diff options
author | Julian Taylor <jtaylor.debian@googlemail.com> | 2014-08-27 12:08:08 +0200 |
---|---|---|
committer | Julian Taylor <jtaylor.debian@googlemail.com> | 2014-08-27 12:15:46 +0200 |
commit | e95cf5f492bf1b181b083ff42ad451319ab23347 (patch) | |
tree | ddb9fcedf7fd99556d975fff1078b2dadd58fb21 /numpy/lib/tests/test_format.py | |
parent | dcf32db293607357d0b4b152b1c630ecbccc092e (diff) | |
download | numpy-e95cf5f492bf1b181b083ff42ad451319ab23347.tar.gz |
TST: skip large file test on windows
nobody knows if it supports sparse filesystems, so just skip it.
Diffstat (limited to 'numpy/lib/tests/test_format.py')
-rw-r--r-- | numpy/lib/tests/test_format.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/numpy/lib/tests/test_format.py b/numpy/lib/tests/test_format.py index 9bf13bc97..46336fc5c 100644 --- a/numpy/lib/tests/test_format.py +++ b/numpy/lib/tests/test_format.py @@ -676,6 +676,8 @@ def test_bad_header(): def test_large_file_support(): from nose import SkipTest + if (sys.platform == 'win32' or sys.platform == 'cygwin'): + raise SkipTest("Unknown if Windows has sparse filesystems") # try creating a large sparse file tf_name = os.path.join(tempdir, 'sparse_file') try: |