From f824fde4058b5b9366f00c4511ac86b586f37082 Mon Sep 17 00:00:00 2001 From: "GPT 5.6" Date: Sun, 26 Jul 2026 09:52:28 +0200 Subject: [PATCH] test: allow Python startup before timeout The macOS Python 3.8 Actions job intermittently killed the helper process before it could start and flush its expected output. The 100 ms deadline tested interpreter startup speed rather than GitPython timeout behavior. Keep the timeout regression coverage while allowing one second for process startup. Validation: five focused runs with Python 3.8; Ruff check and format. Co-authored-by: Sebastian Thiel --- test/test_git.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_git.py b/test/test_git.py index 7256e9bb5..96df3c8f0 100644 --- a/test/test_git.py +++ b/test/test_git.py @@ -302,7 +302,7 @@ def test_it_honors_kill_after_timeout_with_output_stream(self): status, _, stderr = self.git.execute( command, output_stream=output_stream, - kill_after_timeout=0.1, + kill_after_timeout=1, with_exceptions=False, with_extended_output=True, )