Files
podinfo/e2e/test.sh
2020-03-24 13:39:10 +02:00

13 lines
198 B
Bash
Executable File

#!/usr/bin/env bash
set -o errexit
function finish {
echo '>>> Test logs'
kubectl logs -l app=podinfo || true
}
trap "finish" EXIT SIGINT
echo '>>> Start integration tests'
helm test podinfo