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 b3e9915 commit c25a093Copy full SHA for c25a093
1 file changed
.github/workflows/win.yml
@@ -44,10 +44,17 @@ jobs:
44
CMAKE_BUILD_PARALLEL_LEVEL: 8
45
SKBUILD_PARALLEL_LEVEL: 8
46
47
- - name: Run full test suite
+ - name: Run full test suite (miniexpr override off)
48
+ if: matrix.miniexpr_windows == '0'
49
run: python -m pytest
50
env:
- BLOSC2_ENABLE_MINIEXPR_WINDOWS: ${{ matrix.miniexpr_windows }}
51
+ BLOSC2_ENABLE_MINIEXPR_WINDOWS: "0"
52
+
53
+ - name: Run targeted constructor test (miniexpr override on)
54
+ if: matrix.miniexpr_windows == '1'
55
+ run: python -m pytest tests/ndarray/test_lazyexpr.py -k test_save_constructor -x -vv
56
+ env:
57
+ BLOSC2_ENABLE_MINIEXPR_WINDOWS: "1"
58
59
- name: Run DSL JIT bench with trace
60
if: matrix.miniexpr_windows == '1'
0 commit comments