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.
This commit is contained in:
Benoit Chesneau 2026-01-25 15:08:05 +01:00
parent 6575d86251
commit 29830ccc2f

View File

@ -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