summaryrefslogtreecommitdiff
path: root/numpy/lib/tests/test_format.py
diff options
context:
space:
mode:
authorDavid Cournapeau <cournape@gmail.com>2008-09-01 12:50:46 +0000
committerDavid Cournapeau <cournape@gmail.com>2008-09-01 12:50:46 +0000
commit8864e082c10858f535710aa0f08b1887c0fa3c46 (patch)
treea54ea6af692c4fbf73a9bc67e831f8a30a3c0eeb /numpy/lib/tests/test_format.py
parenteae7e11f672e1c1d3bd66959005db1ff2c4a2c2c (diff)
downloadnumpy-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.py2
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.