From 97f5c8fbf43d02fd3b37b5729c682fd21964def6 Mon Sep 17 00:00:00 2001 From: "russell@unturf.com" Date: Mon, 23 Feb 2026 15:08:17 -0500 Subject: [PATCH] fix: use thread timeout method for pytest-xdist compatibility signal-based timeouts corrupt xdist worker processes, causing mass test failures on CI. thread method is the documented alternative for parallel test execution. --- pytest.ini | 1 + 1 file changed, 1 insertion(+) diff --git a/pytest.ini b/pytest.ini index 7e66d1d..2cffdea 100644 --- a/pytest.ini +++ b/pytest.ini @@ -2,6 +2,7 @@ testpaths = make_post_sell python_files = test*.py timeout = 60 +timeout_method = thread # Uncomment filterwarnings to suppress external library warnings # filterwarnings = # # Ignore datetime.utcnow() deprecation from external libraries