From dfe4cb7cca5c948c0dd83b4f1136c0bf65670ef0 Mon Sep 17 00:00:00 2001 From: Paddy Mullen Date: Sun, 22 Mar 2026 18:28:34 -0400 Subject: [PATCH] fix: increase CI mp_timeout from 1s to 3s 1s is too tight for subprocess spawn + execution on slower runners. Co-Authored-By: Claude Opus 4.6 (1M context) --- tests/unit/file_cache/mp_test_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/file_cache/mp_test_utils.py b/tests/unit/file_cache/mp_test_utils.py index d2c02ff3d..cc5c88213 100644 --- a/tests/unit/file_cache/mp_test_utils.py +++ b/tests/unit/file_cache/mp_test_utils.py @@ -12,7 +12,7 @@ LOCAL_TIMEOUT = 0.8 -CI_TIMEOUT = 1.0 +CI_TIMEOUT = 3.0 # spawn context on Windows is much slower than forkserver (full process startup) WINDOWS_CI_TIMEOUT = 10.0