Skip to content

Commit 3095f2f

Browse files
committed
Add reference for xfail message
1 parent afb4a2a commit 3095f2f

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

tests/test_multiple_interpreters.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -408,7 +408,11 @@ def test_import_in_subinterpreter_before_main():
408408
@pytest.mark.skipif(
409409
sys.platform.startswith("emscripten"), reason="Requires loadable modules"
410410
)
411-
@pytest.mark.xfail(env.MUSLLINUX, reason="Flaky on musllinux", strict=False)
411+
@pytest.mark.xfail(
412+
env.MUSLLINUX,
413+
reason="Flaky on musllinux, see also: https://github.com/pybind/pybind11/pull/5972#discussion_r2755283335",
414+
strict=False,
415+
)
412416
@pytest.mark.skipif(not CONCURRENT_INTERPRETERS_SUPPORT, reason="Requires 3.14.0b3+")
413417
def test_import_in_subinterpreter_concurrently():
414418
"""Tests that importing a module in multiple subinterpreters concurrently works correctly"""

0 commit comments

Comments
 (0)