diff options
author | David Cournapeau <cournape@gmail.com> | 2008-09-01 12:50:46 +0000 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2008-09-01 12:50:46 +0000 |
commit | 8864e082c10858f535710aa0f08b1887c0fa3c46 (patch) | |
tree | a54ea6af692c4fbf73a9bc67e831f8a30a3c0eeb /numpy/lib/tests/test_format.py | |
parent | eae7e11f672e1c1d3bd66959005db1ff2c4a2c2c (diff) | |
download | numpy-8864e082c10858f535710aa0f08b1887c0fa3c46.tar.gz |
Disable memmap test which crashes nose tests on cygwin.
Diffstat (limited to 'numpy/lib/tests/test_format.py')
-rw-r--r-- | numpy/lib/tests/test_format.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/lib/tests/test_format.py b/numpy/lib/tests/test_format.py index 611e99690..073af3dac 100644 --- a/numpy/lib/tests/test_format.py +++ b/numpy/lib/tests/test_format.py @@ -421,7 +421,7 @@ def test_roundtrip(): def test_memmap_roundtrip(): # XXX: test crashes nose on windows. Fix this - if not sys.platform == 'win32': + if not (sys.platform == 'win32' or sys.platform == 'cygwin'): for arr in basic_arrays + record_arrays: if arr.dtype.hasobject: # Skip these since they can't be mmap'ed. |