From a5235f7b2e7ad18abb24f99e2cc5f3a37f19371c Mon Sep 17 00:00:00 2001 From: Lai Wei Date: Wed, 1 Aug 2018 14:56:53 -0700 Subject: [PATCH] remove fixed seed, this test is stable --- tests/python/unittest/test_module.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/python/unittest/test_module.py b/tests/python/unittest/test_module.py index 41ea5828ddcd..a2a24762aa4b 100644 --- a/tests/python/unittest/test_module.py +++ b/tests/python/unittest/test_module.py @@ -317,8 +317,9 @@ def create_bucketing_module(key): assert total_bytes_after == total_bytes_before - -@with_seed(11) +# roywei: Getting rid of fixed seed as flakiness could not be reproduced, +# tracked at: https://github.com/apache/incubator-mxnet/issues/11705 +@with_seed() def test_module_set_params(): # data iter data = mx.nd.array([[0.05, .10]]);