Skip to content

Commit ab44b30

Browse files
authored
Skip transient crash on GraalPy on OS X (#5514)
1 parent 8862cd4 commit ab44b30

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

tests/test_gil_scoped.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,10 @@ def test_nested_acquire():
108108

109109

110110
@pytest.mark.skipif(sys.platform.startswith("emscripten"), reason="Requires threads")
111+
@pytest.mark.skipif(
112+
env.GRAALPY and sys.platform == "darwin",
113+
reason="Transiently crashes on GraalPy on OS X",
114+
)
111115
def test_multi_acquire_release_cross_module():
112116
for bits in range(16 * 8):
113117
internals_ids = m.test_multi_acquire_release_cross_module(bits)

0 commit comments

Comments
 (0)