From 29830ccc2f4c61f1a2b0af8eba83c8be40399529 Mon Sep 17 00:00:00 2001 From: Benoit Chesneau Date: Sun, 25 Jan 2026 15:08:05 +0100 Subject: [PATCH] Increase CI timeout for signal integration tests PyPy signal handling can be slower in CI environments, so increase the timeout from 30 to 60 seconds to avoid flaky test failures. --- tests/test_signal_integration.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_signal_integration.py b/tests/test_signal_integration.py index 868e1564..011c6fc1 100644 --- a/tests/test_signal_integration.py +++ b/tests/test_signal_integration.py @@ -18,8 +18,8 @@ import time import pytest -# Timeout for CI environments (VMs can be slow) -CI_TIMEOUT = 30 +# Timeout for CI environments (VMs can be slow, PyPy needs more time) +CI_TIMEOUT = 60 # Simple WSGI app inline