Skip to content

Commit 70e4741

Browse files
jswhit2jswhit2
authored andcommitted
skip plugin tests on windows
1 parent f9be009 commit 70e4741

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

test/run_all.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,12 @@
1515
m = __import__(os.path.splitext(f)[0])
1616
testsuite.addTests(unittest.TestLoader().loadTestsFromModule(m))
1717

18+
# skip compression plugin tests on windows for now
19+
# (conda package plugins not working?).
20+
if sys.platform == 'win32':
21+
test_files.remove('tst_compression_zstd.py)
22+
test_files.remove('tst_compression_blosc.py)
23+
test_files.remove('tst_compression_bzip2.py)
1824

1925
if __name__ == '__main__':
2026
import numpy, cython

0 commit comments

Comments
 (0)