Skip to content

Commit fdbfc55

Browse files
authored
fix test_running_real_remove_backup_groups_job timeout (#2651)
## Changes Increase timeout of inner task ### Linked issues Resolves #2639 ### Functionality None ### Tests - [x] added integration tests Co-authored-by: Eric Vergnaud <[email protected]>
1 parent 7fb017a commit fdbfc55

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
@@ -187,7 +187,7 @@ def test_running_real_remove_backup_groups_job(ws: WorkspaceClient, installation
187187
# API internals have a 60s timeout. As such we should wait at least that long before concluding deletion has not
188188
# happened.
189189
# Note: If you are adjusting this, also look at: test_running_real_remove_backup_groups_job
190-
@retried(on=[KeyError], timeout=timedelta(seconds=90))
190+
@retried(on=[KeyError], timeout=timedelta(minutes=3))
191191
def get_group(group_id: str) -> NoReturn:
192192
_ = ws.groups.get(group_id)
193193
raise KeyError(f"Group is not deleted: {group_id}")

0 commit comments

Comments
 (0)