Skip to content

Commit

Permalink
Improve reliability of run_app test (#8309)
Browse files Browse the repository at this point in the history
  • Loading branch information
Dreamsorcerer authored Apr 8, 2024
1 parent 7afb8d9 commit c29945a
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions tests/test_run_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -931,10 +931,16 @@ async def stop(self, request: web.Request) -> web.Response:

def run_app(self, port: int, timeout: int, task, extra_test=None) -> asyncio.Task:
async def test() -> None:
await asyncio.sleep(1)
await asyncio.sleep(0.5)
async with ClientSession() as sess:
async with sess.get(f"http://localhost:{port}/"):
pass
for _ in range(5): # pragma: no cover
try:
async with sess.get(f"http://localhost:{port}/"):
pass
except ClientConnectorError:
await asyncio.sleep(0.5)
else:
break
async with sess.get(f"http://localhost:{port}/stop"):
pass

Expand Down

0 comments on commit c29945a

Please sign in to comment.