Skip to content

Commit

Permalink
increase MotoService start timeout (#1053)
Browse files Browse the repository at this point in the history
  • Loading branch information
Xeonacid authored Oct 30, 2023
1 parent 48a3f37 commit f67503a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/moto_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ async def _start(self):
async with aiohttp.ClientSession() as session:
start = time.time()

while time.time() - start < 10:
while time.time() - start < 20:
if not self._thread.is_alive():
break

Expand Down

0 comments on commit f67503a

Please sign in to comment.