Skip to content

Commit

Permalink
increase maximum try for server to be up
Browse files Browse the repository at this point in the history
  • Loading branch information
mde-pach committed Mar 3, 2024
1 parent 24df180 commit e6dce14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/fixtures/blitz.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def blitz_app(cli: Cli, blitz_app_path: Path) -> Iterator[None]:
proc.start()
with httpx.Client() as client:
maximum_try = 0
while maximum_try < 10:
while maximum_try < 20:
maximum_try += 1
try:
response = client.get("http://localhost:8100/api/docs")
Expand Down

0 comments on commit e6dce14

Please sign in to comment.