Skip to content

Commit fe54300

Browse files
agoncharov-reefmpnowacki-reef
authored andcommitted
Remove all buckets which start with "clitst" during buckets cleanup
1 parent 4bc1768 commit fe54300

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

CHANGELOG.md

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

77
## [Unreleased]
88

9+
### Added
10+
* Nothing
11+
912
## [1.17.2] - 2022-06-24
1013

1114
### Fixed

test/integration/test_raw_api.py

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

0 commit comments

Comments
 (0)