Skip to content

Commit 030dbed

Browse files
committed
Increase e2e tests default timeout to 3h
1 parent 99b24bf commit 030dbed

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -285,10 +285,11 @@ e2e-essentials: $(GINKGO) $(KUBECTL) e2e-cluster-templates create-kind-cluster #
285285

286286
JOB ?= .*
287287
E2E_CONFIG ?= ${REPO_ROOT}/test/e2e/config/cloudstack.yaml
288+
E2E_TIMEOUT ?= 3h
288289
run-e2e: e2e-essentials ## Run e2e testing. JOB is an optional REGEXP to select certainn test cases to run. e.g. JOB=PR-Blocking, JOB=Conformance
289290
$(KUBECTL) apply -f cloud-config.yaml && \
290291
cd test/e2e && \
291-
$(GINKGO) -v --trace --tags=e2e --focus=$(JOB) --skip=Conformance --skip-package=kubeconfig_helper --nodes=1 --no-color=false ./... -- \
292+
$(GINKGO) -v --trace --tags=e2e --focus=$(JOB) --timeout=$(E2E_TIMEOUT) --skip=Conformance --skip-package=kubeconfig_helper --nodes=1 --no-color=false ./... -- \
292293
-e2e.artifacts-folder=${REPO_ROOT}/_artifacts \
293294
-e2e.config=${E2E_CONFIG} \
294295
-e2e.skip-resource-cleanup=false -e2e.use-existing-cluster=true

0 commit comments

Comments
 (0)