We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f0d8dbc commit 77af130Copy full SHA for 77af130
scripts/run-rollouts-e2e-tests.sh
@@ -4,6 +4,8 @@
4
# - Runs the (cluster-scoped) E2E tests of the Argo Rollouts operator
5
# - Runs the upstream E2E tests from the argo-rollouts repo
6
7
+set -e
8
+
9
ROLLOUTS_TMP_DIR=$(mktemp -d)
10
11
cd $ROLLOUTS_TMP_DIR
@@ -24,7 +26,7 @@ make test-e2e
24
26
25
27
# Clean up old namespaces created by test
28
# NOTE: remove this once this is handled by 'make test-e2e' in argo-rollouts-manager repo
-kubectl delete rolloutmanagers --all -n test-rom-ns-1
29
+kubectl delete rolloutmanagers --all -n test-rom-ns-1 || true
30
31
cd "$ROLLOUTS_TMP_DIR/argo-rollouts-manager"
32
0 commit comments