Skip to content

Commit

Permalink
Longer timeout to be less flaky as there's more in codegen test
Browse files Browse the repository at this point in the history
  • Loading branch information
fantix committed Jun 22, 2023
1 parent e6e6a56 commit 4e435fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_codegen.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ async def run(*args, extra_env=None):
stderr=subprocess.STDOUT,
)
try:
await asyncio.wait_for(p.wait(), 30)
await asyncio.wait_for(p.wait(), 120)
except asyncio.TimeoutError:
p.terminate()
await p.wait()
Expand Down

0 comments on commit 4e435fa

Please sign in to comment.