From b08d4278adfcedb389407eb2b29a818daa412607 Mon Sep 17 00:00:00 2001 From: Ricardo Katz Date: Mon, 15 Nov 2021 19:34:48 -0300 Subject: [PATCH] Try to improve test speed (#7922) --- test/e2e-image/e2e.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/e2e-image/e2e.sh b/test/e2e-image/e2e.sh index 240803c63..3a06871cc 100755 --- a/test/e2e-image/e2e.sh +++ b/test/e2e-image/e2e.sh @@ -27,10 +27,11 @@ E2E_CHECK_LEAKS=${E2E_CHECK_LEAKS:-""} ginkgo_args=( "-randomizeAllSpecs" "-flakeAttempts=2" + "-failFast" "-progress" "-slowSpecThreshold=${SLOW_E2E_THRESHOLD}" "-succinct" - "-timeout=45m" # Suite timeout should be lower than Prow job timeout to avoid abrupt termination + "-timeout=75m" ) echo -e "${BGREEN}Running e2e test suite (FOCUS=${FOCUS})...${NC}"