From 26f8deff17c12b8a05eb9b5f96990122456315cb Mon Sep 17 00:00:00 2001 From: Chris Coutinho Date: Wed, 15 Oct 2025 11:07:06 +0200 Subject: [PATCH] test: Increase stagger delay 0.5 -> 2s --- tests/conftest.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/conftest.py b/tests/conftest.py index 02523dd..8afc629 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -1385,9 +1385,9 @@ async def all_oauth_tokens( browser, shared_oauth_client_credentials, username, config["password"] ) - # Create tasks for all users with staggered starts (0.5s apart) + # Create tasks for all users with staggered starts (2.0s apart) tasks = { - username: get_token_with_delay(username, config, idx * 0.5) + username: get_token_with_delay(username, config, idx * 2.0) for idx, (username, config) in enumerate(test_users_setup.items()) }