Increase the command timeout in test_short_timeout(). (#6945)

This commit is contained in:
Andrey Rakhmatullin 2025-07-06 01:56:54 +05:00 committed by GitHub
parent 4279f2837c
commit 14eace5d8f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -495,7 +495,7 @@ class TestEngine(TestEngineBase):
)
try:
_, stderr = p.communicate(timeout=3)
_, stderr = p.communicate(timeout=15)
except subprocess.TimeoutExpired:
p.kill()
p.communicate()