You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mxnet.apache.org by ns...@apache.org on 2018/08/03 21:40:33 UTC

[incubator-mxnet] branch master updated: Disable flaky test test_random.test_gamma_generator (#12022)

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

nswamy 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 3dd0003  Disable flaky test test_random.test_gamma_generator (#12022)
3dd0003 is described below

commit 3dd0003c2b9d4d561c5346372caea1db1aa37744
Author: Marco de Abreu <ma...@users.noreply.github.com>
AuthorDate: Fri Aug 3 23:40:23 2018 +0200

    Disable flaky test test_random.test_gamma_generator (#12022)
---
 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 d90dfcf..43e9608 100644
--- a/tests/python/unittest/test_random.py
+++ b/tests/python/unittest/test_random.py
@@ -447,6 +447,7 @@ def test_uniform_generator():
             verify_generator(generator=generator_mx_same_seed, buckets=buckets, probs=probs)
 
 @with_seed()
+@unittest.skip('Flaky test, tracked in: https://github.com/apache/incubator-mxnet/issues/9856')
 def test_gamma_generator():
     ctx = mx.context.current_context()
     for dtype in ['float16', 'float32', 'float64']: