Skip to content

Commit

Permalink
Temporarily disable flaky tests (apache#12513)
Browse files Browse the repository at this point in the history
  • Loading branch information
StephanieYuan authored and sandeep-krishnamurthy committed Sep 11, 2018
1 parent acede67 commit 9ec4879
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/python/unittest/test_contrib_svrg_module.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
from common import with_seed, assertRaises
from mxnet.contrib.svrg_optimization.svrg_module import SVRGModule
from mxnet.test_utils import *

import unittest

def setup():
train_data = np.random.randint(1, 5, [1000, 2])
Expand Down Expand Up @@ -134,6 +134,7 @@ def test_module_save_load():
assert mod3._symbol.tojson() == mod4._symbol.tojson()


@unittest.skip("Flaky test https://github.com/apache/incubator-mxnet/issues/12510")
@with_seed()
def test_svrgmodule_reshape():
data = mx.sym.Variable("data")
Expand Down Expand Up @@ -289,6 +290,7 @@ def test_accumulate_kvstore():
assert same(svrg_mod._param_dict[0]["fc1_weight"], b[0])


@unittest.skip("Flaky test https://github.com/apache/incubator-mxnet/issues/12510")
@with_seed()
def test_fit():
di, mod = setup()
Expand Down

0 comments on commit 9ec4879

Please sign in to comment.