Skip to content

Commit

Permalink
Merge branch 'w/2.9/improvement/ZENKO-4941' into tmp/octopus/w/2.10/i…
Browse files Browse the repository at this point in the history
…mprovement/ZENKO-4941
  • Loading branch information
bert-e committed Dec 3, 2024
2 parents a368cf6 + 5a248ef commit 20ea49f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/scripts/end2end/run-e2e-ctst.sh
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,7 @@ EOF

# Set up environment variables for testing
kubectl set env deployment end2end-connector-cloudserver SCUBA_HEALTHCHECK_FREQUENCY=100
kubectl set env deployment end2end-ops-scuba SCUBA_INFLIGHT_SERVICE_FLUSH_FREQUENCY_SECONDS=100
kubectl rollout status deployment end2end-connector-cloudserver

# disable moniroting of count-items
Expand Down
8 changes: 7 additions & 1 deletion tests/ctst/common/hooks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,13 @@ After(async function (this: Zenko, results) {
);
});

After({ tags: '@Quotas' }, async function () {
After({ tags: '@Quotas' }, async function (this: Zenko, results) {
if (results.result?.status === 'FAILED') {
this.logger.warn('quota was not cleaned for test', {
bucket: this.getSaved<string>('bucketName'),
});
return;
}
await teardownQuotaScenarios(this as Zenko);
});

Expand Down

0 comments on commit 20ea49f

Please sign in to comment.