Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Commit

Permalink
Temporarily disable flaky tests (#12520)
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 4ee866f commit 35ca13c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/python/unittest/test_contrib_svrg_module.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ def test_module_bind():
assert mod._mod_aux.binded == True


@unittest.skip("Flaky test https://gitsvrhub.com/apache/incubator-mxnet/issues/12510")
@with_seed()
def test_module_save_load():
import tempfile
Expand Down Expand Up @@ -162,6 +163,7 @@ def test_svrgmodule_reshape():
assert mod.get_outputs()[0].shape == dshape


@unittest.skip("Flaky test https://github.com/apache/incubator-mxnet/issues/12510")
@with_seed()
def test_update_full_grad():
def create_network():
Expand Down Expand Up @@ -204,6 +206,7 @@ def create_network():
assert same(full_grads_weights, svrg_mod._param_dict[0]['fc1_weight'])


@unittest.skip("Flaky test https://github.com/apache/incubator-mxnet/issues/12510")
@with_seed()
def test_svrg_with_sgd():
def create_module_with_sgd():
Expand Down Expand Up @@ -267,6 +270,7 @@ def create_module_with_sgd():
assert svrg_mse < sgd_mse


@unittest.skip("Flaky test https://github.com/apache/incubator-mxnet/issues/12510")
@with_seed()
def test_accumulate_kvstore():
# Test KVStore behavior when push a list of values
Expand Down

0 comments on commit 35ca13c

Please sign in to comment.