Skip to content

Commit f37f4d8

Browse files
authored
Merge pull request #7272 from sbueringer/pr-e2e-test-timeout-2h
🐛 test/e2e: increase ginkgo default timeout to 2h
2 parents f16e48e + 515c5dd commit f37f4d8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/e2e/Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,7 @@ test-extension-deployment: $(KUSTOMIZE) ## Generate deployment for test extensio
112112
GINKGO_FOCUS ?=
113113
GINKGO_SKIP ?=
114114
GINKGO_NODES ?= 1
115+
GINKGO_TIMEOUT ?= 2h
115116
E2E_CONF_FILE ?= ${REPO_ROOT}/test/e2e/config/docker.yaml
116117
ARTIFACTS ?= ${REPO_ROOT}/_artifacts
117118
SKIP_RESOURCE_CLEANUP ?= false
@@ -125,7 +126,7 @@ endif
125126

126127
.PHONY: run
127128
run: $(GINKGO) cluster-templates test-extension-deployment ## Run the end-to-end tests
128-
$(GINKGO) -v --trace --tags=e2e --focus="$(GINKGO_FOCUS)" $(_SKIP_ARGS) --nodes=$(GINKGO_NODES) --no-color=$(GINKGO_NOCOLOR) --output-dir="$(ARTIFACTS)" --junit-report="junit.e2e_suite.1.xml" $(GINKGO_ARGS) . -- \
129+
$(GINKGO) -v --trace --tags=e2e --focus="$(GINKGO_FOCUS)" $(_SKIP_ARGS) --nodes=$(GINKGO_NODES) --timeout=$(GINKGO_TIMEOUT) --no-color=$(GINKGO_NOCOLOR) --output-dir="$(ARTIFACTS)" --junit-report="junit.e2e_suite.1.xml" $(GINKGO_ARGS) . -- \
129130
-e2e.artifacts-folder="$(ARTIFACTS)" \
130131
-e2e.config="$(E2E_CONF_FILE)" \
131132
-e2e.skip-resource-cleanup=$(SKIP_RESOURCE_CLEANUP) -e2e.use-existing-cluster=$(USE_EXISTING_CLUSTER)

0 commit comments

Comments
 (0)