From 11baf85a54132f7c348316b245973b423bb13289 Mon Sep 17 00:00:00 2001 From: "unfoldci-flaky-test-autopilot[bot]" <243416357+unfoldci-flaky-test-autopilot[bot]@users.noreply.github.com> Date: Sat, 27 Dec 2025 19:19:31 +0000 Subject: [PATCH] fix: Increased the timeout to 300ms to ensure the condition has enough time to be met, accounting for the random delay of 50-150ms. --- tests/test_timing_dependency.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_timing_dependency.py b/tests/test_timing_dependency.py index 41230a4..14aec5a 100644 --- a/tests/test_timing_dependency.py +++ b/tests/test_timing_dependency.py @@ -297,8 +297,8 @@ def increment_later(): # FLAKY: Fixed 100ms timeout doesn't account for variance start = time.time() while counter['value'] == 0: - if time.time() - start > 0.2: # Increased timeout to 200ms - pytest.fail('Condition not met within 200ms') + if time.time() - start > 0.3: # Increased timeout to 300ms + pytest.fail('Condition not met within 300ms') time.sleep(0.01) thread.join()