Skip to content

Commit 6cab441

Browse files
committed
TST: random: skip test for extending with Cython on 32-bit Windows
1 parent 57e8050 commit 6cab441

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

numpy/random/tests/test_extending.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,10 @@
4949
cython = None
5050

5151

52+
@pytest.mark.skipif(
53+
sys.platform == "win32" and sys.maxsize < 2**32,
54+
reason="Failing in 32-bit Windows wheel build job, skip for now"
55+
)
5256
@pytest.mark.skipif(IS_WASM, reason="Can't start subprocess")
5357
@pytest.mark.skipif(cython is None, reason="requires cython")
5458
@pytest.mark.slow

0 commit comments

Comments
 (0)