From c30c37d5b5364c2e28a46e25185491c51ebedb79 Mon Sep 17 00:00:00 2001 From: Tres Seaver Date: Thu, 22 Jul 2021 10:15:59 -0400 Subject: [PATCH] tests: use 120 sec timeout for 'blob.delete' during teardown (#518) Closes #517 --- tests/system/_helpers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/system/_helpers.py b/tests/system/_helpers.py index 05e4f8ba6..72045d1b6 100644 --- a/tests/system/_helpers.py +++ b/tests/system/_helpers.py @@ -79,7 +79,7 @@ def delete_blob(blob): errors = (exceptions.Conflict, exceptions.TooManyRequests) retry = RetryErrors(errors) try: - retry(blob.delete)() + retry(blob.delete)(timeout=120) # seconds except exceptions.NotFound: # race pass