Skip to content

Commit

Permalink
Merge pull request #136 from Aleph-Alpha/increase-retries
Browse files Browse the repository at this point in the history
Increase number of retries in tests by one
  • Loading branch information
timsueberkrueb authored Sep 12, 2023
2 parents af4716c + b20c291 commit 1f2d5a2
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 1f2d5a2

Please sign in to comment.