Skip to content

Commit 35fe959

Browse files
authored
Increase timeout for sequence of slow preliminary jobs (#2222)
## Changes Increase timeout for sequence of slow preliminary jobs ### Linked issues Resolves #2219 ### Functionality None ### Tests Not tested Co-authored-by: Eric Vergnaud <[email protected]>
1 parent 08eecdb commit 35fe959

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/integration/install/test_installation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ def test_running_real_remove_backup_groups_job(ws, installation_ctx):
181181
installation_ctx.deployed_workflows.run_workflow("remove-workspace-local-backup-groups")
182182

183183
# The API needs a moment to delete a group, i.e. until the group is not found anymore
184-
@retried(on=[KeyError], timeout=timedelta(minutes=4))
184+
@retried(on=[KeyError], timeout=timedelta(minutes=6))
185185
def get_group(group_id: str):
186186
ws.groups.get(group_id)
187187
raise KeyError(f"Group is not deleted: {group_id}")

0 commit comments

Comments
 (0)