From 4272585fb481cda27dc0580db4f2fbaa99f83f7d Mon Sep 17 00:00:00 2001 From: Chance Bair Date: Mon, 18 Feb 2019 11:04:36 +0100 Subject: [PATCH] Flaky test https://github.com/apache/incubator-mxnet/issues/14189 --- tests/python/gpu/test_kvstore_gpu.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/python/gpu/test_kvstore_gpu.py b/tests/python/gpu/test_kvstore_gpu.py index 8ff8752f534a..23bab53a923d 100644 --- a/tests/python/gpu/test_kvstore_gpu.py +++ b/tests/python/gpu/test_kvstore_gpu.py @@ -43,6 +43,7 @@ def init_kv_with_str(stype='default', kv_type='local'): # Not reproducible, so this test is back on random seeds. @with_seed() @unittest.skipIf(mx.context.num_gpus() < 2, "test_rsp_push_pull needs more than 1 GPU") +@unittest.skip("Flaky test https://github.com/apache/incubator-mxnet/issues/14189") def test_rsp_push_pull(): def check_rsp_push_pull(kv_type, sparse_pull, is_push_cpu=True): kv = init_kv_with_str('row_sparse', kv_type)