mirror of
https://github.com/pybind/pybind11.git
synced 2025-02-22 16:39:29 +00:00
Skip transient crash on GraalPy on OS X (#5514)
This commit is contained in:
parent
8862cd4e7d
commit
ab44b307b2
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user