From e95cf5f492bf1b181b083ff42ad451319ab23347 Mon Sep 17 00:00:00 2001 From: Julian Taylor Date: Wed, 27 Aug 2014 12:08:08 +0200 Subject: TST: skip large file test on windows nobody knows if it supports sparse filesystems, so just skip it. --- numpy/lib/tests/test_format.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'numpy/lib/tests/test_format.py') 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: -- cgit v1.2.1