From b20c291150cca1e3ba0fff1222c2b20a0b0823bf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim=20S=C3=BCberkr=C3=BCb?= Date: Tue, 12 Sep 2023 11:59:41 +0200 Subject: [PATCH] Increase number of retries in tests by one --- tests/common.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/common.py b/tests/common.py index 720a5b1..91d078c 100644 --- a/tests/common.py +++ b/tests/common.py @@ -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, ) @@ -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