tests cleanup; cargo clippy fixes, minor doc updates (#177)

* Tests cleanup; cargo clippy fixes, minor doc updates
* updated label checker workflow
This commit is contained in:
Henk-Jan Lebbink
2025-07-11 11:08:22 +02:00
committed by GitHub
parent e0a77fcb1a
commit e244229490
26 changed files with 326 additions and 216 deletions

View File

@@ -38,12 +38,7 @@ async fn list_buckets(ctx: TestContext) {
for bucket in resp.buckets().unwrap().iter() {
if names.contains(&bucket.name) {
count += 1;
} // else if bucket.name.len() == 8 {
// match ctx.client.delete_and_purge_bucket(&bucket.name).await {
// Ok(_) => println!("Deleted bucket: {}", bucket.name),
// Err(e) => println!("Failed to delete bucket {}: {}", bucket.name, e)
// }
//}
}
}
assert_eq!(guards.len(), N_BUCKETS);
assert_eq!(count, N_BUCKETS);