Skip to content

Commit ebe28d4

Browse files
committed
Debugging a windows issue (V)
1 parent d17eef4 commit ebe28d4

2 files changed

Lines changed: 7 additions & 1 deletion

File tree

.github/workflows/build.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,3 +86,9 @@ jobs:
8686
run: python -m pytest -s --tb=short -m "not heavy and (network or not network)"
8787
env:
8888
PYTHONFAULTHANDLER: "1"
89+
90+
- name: Post-suite Windows DSL shutdown stress
91+
if: runner.os == 'Windows'
92+
run: python -m pytest -s --tb=short tests/ndarray/test_windows_dsl_shutdown_repro.py::test_windows_dsl_scalar_only_flat_idx_shutdown_stress
93+
env:
94+
PYTHONFAULTHANDLER: "1"

tests/ndarray/test_windows_dsl_shutdown_repro.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ def kernel(start, stop, nitems):
135135
"""
136136
)
137137

138-
nrepeat = 100 if sys.platform == "win32" else 5
138+
nrepeat = 1000 if sys.platform == "win32" else 5
139139
with tempfile.TemporaryDirectory() as tmpdir:
140140
script = Path(tmpdir) / "dsl_shutdown_stress.py"
141141
script.write_text(code, encoding="utf-8")

0 commit comments

Comments
 (0)