From 7a81b9b02715526a42ffb766b3f42c8c351c3cc8 Mon Sep 17 00:00:00 2001 From: ChaiBapchya Date: Thu, 29 Nov 2018 21:02:27 -0800 Subject: [PATCH] Skip flaky test https://github.com/apache/incubator-mxnet/issues/13446 --- tests/python/unittest/test_random.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/python/unittest/test_random.py b/tests/python/unittest/test_random.py index 3436e9a9e80e..3026d31c0f96 100644 --- a/tests/python/unittest/test_random.py +++ b/tests/python/unittest/test_random.py @@ -860,6 +860,7 @@ def test_randint_extremes(): assert a>=50000000 and a<=50000010 @with_seed() +@unittest.skip("Flaky test: https://github.com/apache/incubator-mxnet/issues/13446") def test_randint_generator(): ctx = mx.context.current_context() for dtype in ['int32', 'int64']: