Skip to content

Commit 47c22f4

Browse files
committed
Increase timeout for a test which would hang completely if failing.
Timeouts in virtualized CI backends can occasionally fail if too short.
1 parent a50cec5 commit 47c22f4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_asyncio/test_commands.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3051,7 +3051,7 @@ async def helper():
30513051
# the task is now sleeping, lets send it an exception
30523052
task.cancel()
30533053
# If all is well, the task should finish right away, otherwise fail with Timeout
3054-
async with async_timeout(0.1):
3054+
async with async_timeout(1.0):
30553055
await task
30563056

30573057

0 commit comments

Comments
 (0)