Skip to content

Commit bcbc300

Browse files
authored
Harden systest teardown further. (googleapis#5900)
1 parent cbf90ec commit bcbc300

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

storage/tests/system.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,8 @@ def setUpModule():
8282

8383

8484
def tearDownModule():
85-
retry = RetryErrors(exceptions.Conflict, exceptions.TooManyRequests)
85+
errors = (exceptions.Conflict, exceptions.TooManyRequests)
86+
retry = RetryErrors(errors, max_tries=6)
8687
retry(Config.TEST_BUCKET.delete)(force=True)
8788

8889

0 commit comments

Comments
 (0)