Skip to content

Commit

Permalink
add 10 sec for wait completion to avoid errors on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinBelthle committed Jan 29, 2024
1 parent 2747e6b commit 0cedf95
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def test_download_matrices(self, client: TestClient, admin_access_token: str, st
assert res.status_code == 200
task_id = res.json()
assert task_id
task = wait_task_completion(client, admin_access_token, task_id)
task = wait_task_completion(client, admin_access_token, task_id, timeout=20)
assert task.status == TaskStatus.COMPLETED

# Create Variant
Expand Down

0 comments on commit 0cedf95

Please sign in to comment.