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

Disable Flaky Test: test_contrib_svrg_module.test_svrgmodule_reshape #12513

Merged
merged 1 commit into from
Sep 11, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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