Skip to content

Commit

Permalink
Skip transient crash on GraalPy on OS X
Browse files Browse the repository at this point in the history
  • Loading branch information
msimacek committed Feb 4, 2025
1 parent 8862cd4 commit 8c98b4b
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/test_gil_scoped.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,10 @@ def test_nested_acquire():


@pytest.mark.skipif(sys.platform.startswith("emscripten"), reason="Requires threads")
@pytest.mark.skipif(
env.GRAALPY and sys.platform == "darwin",
reason="Transiently crashes on GraalPy on OS X",
)
def test_multi_acquire_release_cross_module():
for bits in range(16 * 8):
internals_ids = m.test_multi_acquire_release_cross_module(bits)
Expand Down

0 comments on commit 8c98b4b

Please sign in to comment.