Skip to content

Commit

Permalink
fix test_running_real_remove_backup_groups_job timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
ericvergnaud committed Sep 17, 2024
1 parent c293879 commit 5293989
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/integration/install/test_installation.py
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ def test_running_real_remove_backup_groups_job(ws: WorkspaceClient, installation
# API internals have a 60s timeout. As such we should wait at least that long before concluding deletion has not
# happened.
# Note: If you are adjusting this, also look at: test_running_real_remove_backup_groups_job
@retried(on=[KeyError], timeout=timedelta(seconds=90))
@retried(on=[KeyError], timeout=timedelta(minutes=3))
def get_group(group_id: str) -> NoReturn:
_ = ws.groups.get(group_id)
raise KeyError(f"Group is not deleted: {group_id}")
Expand Down

0 comments on commit 5293989

Please sign in to comment.