From 7145f2b31369517424cf8730afc4ab1a6898c034 Mon Sep 17 00:00:00 2001 From: "russell@unturf.com" Date: Mon, 23 Feb 2026 15:24:00 -0500 Subject: [PATCH] =?UTF-8?q?fix:=20disable=20pytest-timeout=20=E2=80=94=20c?= =?UTF-8?q?rashes=20xdist=20workers=20on=20CI?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Both signal and thread timeout methods break pytest-xdist: signal corrupts workers, thread kills them mid-operation. The real fix was timeout=10 on PayPal requests. Global test timeout is not needed. --- pytest.ini | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pytest.ini b/pytest.ini index 2cffdea..eaf1e64 100644 --- a/pytest.ini +++ b/pytest.ini @@ -1,8 +1,7 @@ [pytest] testpaths = make_post_sell python_files = test*.py -timeout = 60 -timeout_method = thread +timeout = 0 # Uncomment filterwarnings to suppress external library warnings # filterwarnings = # # Ignore datetime.utcnow() deprecation from external libraries