From 3ae318ceebb86cdb70c55f608d51c66d6d139406 Mon Sep 17 00:00:00 2001 From: dprotaso Date: Tue, 23 May 2023 18:29:04 -0400 Subject: [PATCH] Disable update test See: https://github.com/knative-sandbox/net-istio/issues/938 --- test/e2e-tests.sh | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/test/e2e-tests.sh b/test/e2e-tests.sh index fba153a330..a46555c713 100755 --- a/test/e2e-tests.sh +++ b/test/e2e-tests.sh @@ -21,9 +21,19 @@ initialize $@ --skip-istio-addon # TODO Re-enable conformance tests for mesh when everything's been fixed # https://github.com/knative-sandbox/net-istio/issues/584 +# +# Also update tests are super flakey and need to be fixed +# https://github.com/knative-sandbox/net-istio/issues/938 +# if [[ $MESH -eq 0 ]]; then - go_test_e2e -timeout=60m ./test/conformance --parallel 12 \ - --enable-beta --enable-alpha || fail_test + go_test_e2e \ + -timeout 60m \ + -parallel 12 \ + ./test/conformance \ + -args \ + -enable-alpha \ + -enable-beta \ + -skip-tests update || fail_test fi go_test_e2e -timeout=10m \