You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mxnet.apache.org by sk...@apache.org on 2018/09/11 04:41:26 UTC

[incubator-mxnet] branch master updated: Temporarily disable flaky tests (#12513)

This is an automated email from the ASF dual-hosted git repository.

skm pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-mxnet.git


The following commit(s) were added to refs/heads/master by this push:
     new 9ec4879  Temporarily disable flaky tests (#12513)
9ec4879 is described below

commit 9ec4879e4abc16e4dff010cb2648f88625509046
Author: Stephanie Jingyi Yuan <st...@gmail.com>
AuthorDate: Tue Sep 11 00:41:14 2018 -0400

    Temporarily disable flaky tests (#12513)
---
 tests/python/unittest/test_contrib_svrg_module.py | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/tests/python/unittest/test_contrib_svrg_module.py b/tests/python/unittest/test_contrib_svrg_module.py
index d9e0aba..dd4618e 100644
--- a/tests/python/unittest/test_contrib_svrg_module.py
+++ b/tests/python/unittest/test_contrib_svrg_module.py
@@ -20,7 +20,7 @@ import numpy as np
 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])
@@ -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")
@@ -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()