Skip transient crash on GraalPy on OS X (#5514)

This commit is contained in:
Michael Šimáček 2025-02-04 16:48:47 +01:00 committed by GitHub
parent 8862cd4e7d
commit ab44b307b2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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)