Skip to content

Commit f824fde

Browse files
codexByron
andcommitted
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 <sebastian.thiel@icloud.com>
1 parent ccbd573 commit f824fde

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test/test_git.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,7 @@ def test_it_honors_kill_after_timeout_with_output_stream(self):
302302
status, _, stderr = self.git.execute(
303303
command,
304304
output_stream=output_stream,
305-
kill_after_timeout=0.1,
305+
kill_after_timeout=1,
306306
with_exceptions=False,
307307
with_extended_output=True,
308308
)

0 commit comments

Comments
 (0)