@@ -81,7 +81,8 @@ GINKGO_FOCUS ?=
8181GINKGO_SKIP ?=
8282GINKGO_LABEL_FILTER ?=
8383GINKGO_NODES ?= 1
84- GINKGO_TIMEOUT ?= 2h
84+ GINKGO_TIMEOUT ?= 3h
85+ GINKGO_ARGS ?=
8586GINKGO_POLL_PROGRESS_AFTER ?= 60m
8687GINKGO_POLL_PROGRESS_INTERVAL ?= 5m
8788E2E_CONF_FILE ?= $(ROOT_DIR ) /$(TEST_DIR ) /e2e/config/docker.yaml
@@ -973,13 +974,17 @@ test-test-extension-junit: $(SETUP_ENVTEST) $(GOTESTSUM) ## Run unit and integra
973974
974975.PHONY : test-e2e
975976test-e2e : $(GINKGO ) generate-e2e-templates # # Run the end-to-end tests
976- $(GINKGO ) -v --trace -poll-progress-after=$(GINKGO_POLL_PROGRESS_AFTER ) \
977- -poll-progress-interval=$(GINKGO_POLL_PROGRESS_INTERVAL ) --tags=e2e --focus=" $( GINKGO_FOCUS) " --label-filter=" $( GINKGO_LABEL_FILTER) " \
978- $(_SKIP_ARGS ) --nodes=$(GINKGO_NODES ) --timeout=$(GINKGO_TIMEOUT ) --no-color=$(GINKGO_NOCOLOR ) \
979- --output-dir=" $( ARTIFACTS) " --junit-report=" junit.e2e_suite.1.xml" $(GINKGO_ARGS ) $(ROOT_DIR ) /$(TEST_DIR ) /e2e -- \
980- -e2e.artifacts-folder=" $( ARTIFACTS) " \
981- -e2e.config=" $( E2E_CONF_FILE) " \
982- -e2e.skip-resource-cleanup=$(SKIP_RESOURCE_CLEANUP ) -e2e.use-existing-cluster=$(USE_EXISTING_CLUSTER )
977+ $(GINKGO ) -v --trace --tags=e2e \
978+ --nodes=$(GINKGO_NODES ) --timeout=$(GINKGO_TIMEOUT ) \
979+ --label-filter=" $( GINKGO_LABEL_FILTER) " --focus=" $( GINKGO_FOCUS) " $(_SKIP_ARGS ) \
980+ --poll-progress-after=$(GINKGO_POLL_PROGRESS_AFTER ) --poll-progress-interval=$(GINKGO_POLL_PROGRESS_INTERVAL ) \
981+ --fail-on-pending --fail-on-empty \
982+ --no-color=$(GINKGO_NOCOLOR ) --output-dir=" $( ARTIFACTS) " --junit-report=" junit.e2e_suite.1.xml" \
983+ $(GINKGO_ARGS ) ./test/e2e -- \
984+ --e2e.artifacts-folder=" $( ARTIFACTS) " \
985+ --e2e.config=" $( E2E_CONF_FILE) " \
986+ --e2e.skip-resource-cleanup=$(SKIP_RESOURCE_CLEANUP ) \
987+ --e2e.use-existing-cluster=$(USE_EXISTING_CLUSTER )
983988
984989
985990.PHONY : kind-cluster
0 commit comments