From 395e47cc9e2b1304b5f9e844912dcd52b566476a Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 4 Aug 2023 07:36:36 +0530 Subject: [PATCH] CI is even slower than I thought --- kitty_tests/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kitty_tests/__init__.py b/kitty_tests/__init__.py index 3a9a58a9a..0f8769b13 100644 --- a/kitty_tests/__init__.py +++ b/kitty_tests/__init__.py @@ -304,7 +304,7 @@ class PTY: if not q(): raise TimeoutError(f'The condition was not met. Screen contents: \n {repr(self.screen_contents())}') - def wait_till_child_exits(self, timeout=20 if BaseTest.is_ci else 10, require_exit_code=None): + def wait_till_child_exits(self, timeout=30 if BaseTest.is_ci else 10, require_exit_code=None): end_time = time.monotonic() + timeout while time.monotonic() <= end_time: si_pid, status = os.waitpid(self.child_pid, os.WNOHANG)