Skip to content

Commit f9a8d40

Browse files
Remove all buckets which start with "clitst" during buckets cleanup
1 parent 002dd22 commit f9a8d40

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

test/integration/test_raw_api.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -586,6 +586,9 @@ def _clean_and_delete_bucket(raw_api, api_url, account_auth_token, account_id, b
586586
def _should_delete_bucket(bucket_name):
587587
# Bucket names for this test look like: c7b22d0b0ad7-1460060364-5670
588588
# Other buckets should not be deleted.
589+
if bucket_name.startswith('clitst'):
590+
return True
591+
589592
match = re.match(r'^test-raw-api-[a-f0-9]+-([0-9]+)-([0-9]+)', bucket_name)
590593
if match is None:
591594
return False

0 commit comments

Comments
 (0)