You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mxnet.apache.org by zh...@apache.org on 2021/02/20 05:24:24 UTC

[incubator-mxnet] branch v1.x updated: [v1.x] Unskip Flaky test_gluon_data tests (#19919)

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

zha0q1 pushed a commit to branch v1.x
in repository https://gitbox.apache.org/repos/asf/incubator-mxnet.git


The following commit(s) were added to refs/heads/v1.x by this push:
     new 141f919  [v1.x] Unskip Flaky test_gluon_data tests (#19919)
141f919 is described below

commit 141f9193d41ccca065db30fbec78d268a684ade7
Author: Zhaoqi Zhu <zh...@gmail.com>
AuthorDate: Fri Feb 19 21:22:51 2021 -0800

    [v1.x] Unskip Flaky test_gluon_data tests (#19919)
    
    * Update test_gluon_data.py
    
    * Update test_gluon_data.py
---
 tests/python/unittest/test_gluon_data.py | 2 --
 1 file changed, 2 deletions(-)

diff --git a/tests/python/unittest/test_gluon_data.py b/tests/python/unittest/test_gluon_data.py
index 8c202b2..a2b8164 100644
--- a/tests/python/unittest/test_gluon_data.py
+++ b/tests/python/unittest/test_gluon_data.py
@@ -251,7 +251,6 @@ def _batchify(data):
         nd.array(y_lens, ctx=context.Context('cpu_shared', 0)))
 
 @with_seed()
-@unittest.skip("skipping flaky test - see https://github.com/apache/incubator-mxnet/issues/19877")
 def test_multi_worker_forked_data_loader():
     data = _Dummy(False)
     loader = DataLoader(data, batch_size=40, batchify_fn=_batchify, num_workers=2)
@@ -266,7 +265,6 @@ def test_multi_worker_forked_data_loader():
             pass
 
 @with_seed()
-@unittest.skip("skipping flaky test - see https://github.com/apache/incubator-mxnet/issues/19877")
 def test_multi_worker_dataloader_release_pool():
     # will trigger too many open file if pool is not released properly
     if os.name == 'nt':