Skip to content

Commit

Permalink
increase timeout for CI
Browse files Browse the repository at this point in the history
  • Loading branch information
rambo committed Feb 23, 2024
1 parent ebb19b9 commit ec61392
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_console.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit ec61392

Please sign in to comment.