Skip to content

Commit 317b70e

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

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
* Nothing
10+
911
### Added
1012
* Add `include_existing_files` parameter to `ReplicationSetupHelper`
1113

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)