Skip to content

Commit

Permalink
Increase number of retries in tests by one
Browse files Browse the repository at this point in the history
  • Loading branch information
timsueberkrueb committed Sep 12, 2023
1 parent af4716c commit b20c291
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ def sync_client() -> Client:
return Client(
token=get_env_var("TEST_TOKEN"),
host=get_env_var("TEST_API_URL"),
total_retries=2,
total_retries=3,
)


Expand All @@ -20,7 +20,7 @@ async def async_client() -> AsyncIterable[AsyncClient]:
async with AsyncClient(
token=get_env_var("TEST_TOKEN"),
host=get_env_var("TEST_API_URL"),
total_retries=2,
total_retries=3,
) as client:
yield client

Expand Down

0 comments on commit b20c291

Please sign in to comment.