From ab44b307b278b24ca81c339f40f7810d2fd2b389 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20=C5=A0im=C3=A1=C4=8Dek?= Date: Tue, 4 Feb 2025 16:48:47 +0100 Subject: [PATCH] Skip transient crash on GraalPy on OS X (#5514) --- tests/test_gil_scoped.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/test_gil_scoped.py b/tests/test_gil_scoped.py index 257e66612..2db771a50 100644 --- a/tests/test_gil_scoped.py +++ b/tests/test_gil_scoped.py @@ -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)