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

lausen pushed a commit to branch leezu-patch-4
in repository https://gitbox.apache.org/repos/asf/incubator-mxnet.git

commit 1c17e342ee66add304cc54b3c0558965b1bb0c87
Author: Leonard Lausen <lau...@amazon.com>
AuthorDate: Fri May 22 13:39:13 2020 -0700

    Disable test_CSVIter
---
 tests/python/unittest/test_io.py | 8 +++-----
 1 file changed, 3 insertions(+), 5 deletions(-)

diff --git a/tests/python/unittest/test_io.py b/tests/python/unittest/test_io.py
index 635471d..86af2b9 100644
--- a/tests/python/unittest/test_io.py
+++ b/tests/python/unittest/test_io.py
@@ -23,7 +23,7 @@ from mxnet.base import MXNetError
 import numpy as np
 import os
 import gzip
-import pickle as pickle
+import pickle
 import time
 try:
     import h5py
@@ -32,10 +32,7 @@ except ImportError:
 import sys
 from common import assertRaises
 import pytest
-try:
-    from itertools import izip_longest as zip_longest
-except:
-    from itertools import zip_longest
+from itertools import zip_longest
 
 
 def test_MNISTIter(tmpdir):
@@ -426,6 +423,7 @@ def test_DataBatch():
         r'DataBatch: data shapes: \[\(2L?, 3L?\), \(7L?, 8L?\)\] label shapes: 
\[\(4L?, 5L?\)\]', str(batch))
 
 
+@pytest.mark.skip(reason="https://github.com/apache/incubator-mxnet/issues/18382";)
 def test_CSVIter():
     def check_CSVIter_synthetic(dtype='float32'):
         cwd = os.getcwd()

Reply via email to