Skip to content

Commit 24ea536

Browse files
authored
tests: use 120 sec timeout for 'blob.delete' during teardown (#518)
Closes #517
1 parent 521e2bf commit 24ea536

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/system/_helpers.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ def delete_blob(blob):
7979
errors = (exceptions.Conflict, exceptions.TooManyRequests)
8080
retry = RetryErrors(errors)
8181
try:
82-
retry(blob.delete)()
82+
retry(blob.delete)(timeout=120) # seconds
8383
except exceptions.NotFound: # race
8484
pass
8585

0 commit comments

Comments
 (0)