We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e1475c commit 7b3b663Copy full SHA for 7b3b663
.github/workflows/build.yml
@@ -84,5 +84,14 @@ jobs:
84
id: build_non_windows
85
run: pip install -e .[test]
86
87
- - name: Test
+ - name: Test (Windows)
88
+ if: runner.os == 'Windows'
89
+ run: python -m pytest -m "not heavy and (network or not network)"
90
+ env:
91
+ BLOSC_NTHREADS: "1"
92
+ NUMEXPR_NUM_THREADS: "1"
93
+ OMP_NUM_THREADS: "1"
94
+
95
+ - name: Test (non-Windows)
96
+ if: runner.os != 'Windows'
97
run: python -m pytest -m "not heavy and (network or not network)"
0 commit comments