Skip to content

Commit

Permalink
skip validate in certUrl e2e
Browse files Browse the repository at this point in the history
  • Loading branch information
Robert Wiesner committed May 13, 2023
1 parent ac86bfa commit 8e30e88
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
# continue on error to show logs
continue-on-error: true
working-directory: testdata/e2e
run: ./runTests.sh
run: ./runTests.sh "skip-validate"

- name: 🔐 Print logs Cert-URL
run: |
Expand Down
4 changes: 3 additions & 1 deletion testdata/e2e/runTests.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
#!/bin/bash
set -e

./runTestValidate.sh
if [ "${1}" != "skip-validate" ]; then
./runTestValidate.sh
fi

./runTestKubeseal.sh

Expand Down

0 comments on commit 8e30e88

Please sign in to comment.