From 9672c92a9bef374df1ad3c5d44f562c20e27db8c Mon Sep 17 00:00:00 2001 From: dgtlmoon Date: Fri, 10 Oct 2025 00:27:28 +0200 Subject: [PATCH] tweak timing --- changedetectionio/tests/util.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/changedetectionio/tests/util.py b/changedetectionio/tests/util.py index ff1b476c3..320d34083 100644 --- a/changedetectionio/tests/util.py +++ b/changedetectionio/tests/util.py @@ -147,9 +147,9 @@ def wait_for_all_checks(client=None): while attempt < max_attempts: # Start with fast checks, slow down if needed if attempt < 10: - time.sleep(0.1) # Very fast initial checks + time.sleep(0.2) # Very fast initial checks elif attempt < 30: - time.sleep(0.3) # Medium speed + time.sleep(0.4) # Medium speed else: time.sleep(0.8) # Slower for persistent issues @@ -166,7 +166,7 @@ def wait_for_all_checks(client=None): empty_since = None attempt += 1 - time.sleep(0.15) + time.sleep(0.3) # Replaced by new_live_server_setup and calling per function scope in conftest.py def live_server_setup(live_server):