From 546796907ec86026ba190cb9ac73a999f7d579e2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-R=C3=A9my=20Bancel?= Date: Thu, 25 Jul 2019 11:55:57 -0700 Subject: [PATCH] Increase E2E timeout. --- test/e2e-tests.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/e2e-tests.sh b/test/e2e-tests.sh index 419d7d6e2e28..4b6bf8afb591 100755 --- a/test/e2e-tests.sh +++ b/test/e2e-tests.sh @@ -46,14 +46,14 @@ failed=0 # Run conformance and e2e tests. if (( INSTALL_BETA )); then # When beta is installed, include our beta tests. - go_test_e2e -timeout=30m \ + go_test_e2e -timeout=90m \ ./test/conformance/api/v1alpha1 \ ./test/conformance/api/v1beta1 \ ./test/conformance/runtime \ ./test/e2e \ "--resolvabledomain=$(use_resolvable_domain)" || failed=1 else - go_test_e2e -timeout=30m \ + go_test_e2e -timeout=90m \ ./test/conformance/api/v1alpha1 \ ./test/conformance/runtime \ ./test/e2e \