diff --git a/test/e2e-tests.sh b/test/e2e-tests.sh index 9dd9b431a..85e1557c0 100755 --- a/test/e2e-tests.sh +++ b/test/e2e-tests.sh @@ -28,7 +28,11 @@ knative_conformance || failed=1 test_ha || failed=1 test_e2e || failed=1 -gateway_conformance || true # this is informational +if [[ "${JOB_NAME:-unknown}" == *"nightly"* ]]; then + gateway_conformance || true # this is informational +fi + + (( failed )) && fail_test