From 71762e560473dda27436c5e1267b43c97c016d71 Mon Sep 17 00:00:00 2001 From: Dave Protasowski Date: Tue, 23 Apr 2024 13:09:58 -0400 Subject: [PATCH] only run gateway conformance tests during nightly builds --- test/e2e-tests.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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