Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tests/test_timing_dependency.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down
Loading