Skip to content

Commit 1a1dbaa

Browse files
committed
Try tightening timeout to see if self-hosted runner is just a little slower for tests
1 parent 7e6eda6 commit 1a1dbaa

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

playwright/test.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -387,8 +387,8 @@ def poll_for_tasks_completion(page: Page, project_key: str, version_key: str, re
387387
polling_url = f"{ATR_BASE_URL}/admin/ongoing-tasks/{rev_path}"
388388
logging.info(f"Polling URL: {polling_url}")
389389

390-
max_wait_seconds = 18
391-
poll_interval_seconds = 0.01
390+
max_wait_seconds = 60
391+
poll_interval_seconds = 0.5
392392
start_time = time.monotonic()
393393

394394
for attempt in range(int(max_wait_seconds / poll_interval_seconds)):

0 commit comments

Comments
 (0)