Skip to content

Commit 3b9a043

Browse files
committed
Makefile: do not skip e2e test for Conformance
1 parent 5976233 commit 3b9a043

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
@@ -293,7 +293,8 @@ E2E_TIMEOUT ?= 3h
293293
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
294294
$(KUBECTL) apply -f cloud-config.yaml && \
295295
cd test/e2e && \
296-
$(GINKGO) -v --trace --tags=e2e --focus=$(JOB) --timeout=$(E2E_TIMEOUT) --skip=Conformance --skip-package=kubeconfig_helper --nodes=1 --no-color=false ./... -- \
296+
$(GINKGO) -v --trace --tags=e2e --focus=$(JOB) --timeout=$(E2E_TIMEOUT) \
297+
--skip-package=kubeconfig_helper --nodes=1 --no-color=false ./... -- \
297298
-e2e.artifacts-folder=${REPO_ROOT}/_artifacts \
298299
-e2e.config=${E2E_CONFIG} \
299300
-e2e.skip-resource-cleanup=false -e2e.use-existing-cluster=true

0 commit comments

Comments
 (0)