Skip to content

Commit 5ab91e4

Browse files
remove after hook for azure archive
Issue: ZENKO-5203
1 parent e493b0f commit 5ab91e4

File tree

1 file changed

+14
-10
lines changed

1 file changed

+14
-10
lines changed

tests/ctst/common/hooks.ts

Lines changed: 14 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -90,16 +90,20 @@ After({ tags: '@Quotas' }, async function (this: Zenko, results) {
9090
await teardownQuotaScenarios(this as Zenko);
9191
});
9292

93-
After({ tags: '@AzureArchive' }, async function (this: Zenko) {
94-
await cleanZenkoLocation(
95-
this,
96-
this.getSaved<string>('locationName'),
97-
);
98-
await cleanAzureContainer(
99-
this,
100-
this.getSaved<string>('bucketName'),
101-
);
102-
});
93+
// TODO : Review again these, but they are probably not that useful
94+
// Tests should work without having to do cleanups in between
95+
// cleaning azure containers also triggered delete in sorbet that were put in DLQ
96+
// because delete for tar were not implemented
97+
// After({ tags: '@AzureArchive' }, async function (this: Zenko) {
98+
// await cleanZenkoLocation(
99+
// this,
100+
// this.getSaved<string>('locationName'),
101+
// );
102+
// await cleanAzureContainer(
103+
// this,
104+
// this.getSaved<string>('bucketName'),
105+
// );
106+
// });
103107

104108
After({ tags: '@BP-ASSUME_ROLE_USER_CROSS_ACCOUNT'}, async function (this: Zenko, results) {
105109
const crossAccountName = this.getSaved<string>('crossAccountName');

0 commit comments

Comments
 (0)