From ec6139243628e34772ed8bd7f25a6090563e5c6d Mon Sep 17 00:00:00 2001 From: Eero af Heurlin Date: Fri, 23 Feb 2024 18:53:40 +0200 Subject: [PATCH] increase timeout for CI --- tests/test_console.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_console.py b/tests/test_console.py index 1465a138..ebbc12d4 100644 --- a/tests/test_console.py +++ b/tests/test_console.py @@ -16,7 +16,7 @@ async def test_version_cli(): # type: ignore stdout=asyncio.subprocess.PIPE, stderr=asyncio.subprocess.PIPE, ) - out = await asyncio.wait_for(process.communicate(), 10) + out = await asyncio.wait_for(process.communicate(), 15) # Demand clean exit assert process.returncode == 0 # Check output