teardown.sh 158 B

12345678910
  1. #!/usr/bin/env bash
  2. # shellcheck disable=SC1091
  3. . lib.sh
  4. teardown_suite () {
  5. if [ -n "$E2E_SKIP_TEARDOWN_ON_FAILURE" ]; then
  6. return
  7. fi
  8. delete_cluster
  9. }