Use a larger timeout when running prewarm test

This commit is contained in:
Kovid Goyal
2022-10-30 10:36:10 +05:30
parent 3847837bd0
commit a8ab4eaf23
2 changed files with 2 additions and 2 deletions

View File

@@ -38,7 +38,7 @@ if TYPE_CHECKING:
error_events = select.POLLERR | select.POLLNVAL | select.POLLHUP
TIMEOUT = 15.0 if os.environ.get('CI') == 'true' else 5.0
TIMEOUT = 5.0
def restore_python_signal_handlers() -> None: