From 9154a6bb1294ecf00045e8a2d1befb17c8061b41 Mon Sep 17 00:00:00 2001 From: Nathan Goldbaum Date: Mon, 29 Jun 2026 16:03:32 -0600 Subject: [PATCH] Fix flaky pytest-run-parallel CI crash --- testing/cffi0/test_function.py | 1 + 1 file changed, 1 insertion(+) diff --git a/testing/cffi0/test_function.py b/testing/cffi0/test_function.py index b14a62b5..7921c697 100644 --- a/testing/cffi0/test_function.py +++ b/testing/cffi0/test_function.py @@ -280,6 +280,7 @@ def test_passing_array(self): res = ffi.C.strlen(p) assert res == 5 + @pytest.mark.thread_unsafe(reason="Mutates process-global libc stdout pointer") def test_write_variable(self): if not sys.platform.startswith('linux') or _is_musl: pytest.skip("probably no symbol 'stdout' in the lib")