Skip to content

Commit 2b790d8

Browse files
authored
Merge pull request #182 from jweite-amazon/fix_e2e_command
Fixed faulty command path in run-e2e target, caused by another recent…
2 parents 4cd8938 + f62382c commit 2b790d8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ JOB ?= .*
283283
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
284284
$(KUBECTL) apply -f cloud-config.yaml && \
285285
cd test/e2e && \
286-
$(REPO_ROOT)/$(GINKGO_V1) -v -trace -tags=e2e -focus=$(JOB) -skip=Conformance -skipPackage=helpers -nodes=1 -noColor=false ./... -- \
286+
$(GINKGO_V1) -v -trace -tags=e2e -focus=$(JOB) -skip=Conformance -skipPackage=helpers -nodes=1 -noColor=false ./... -- \
287287
-e2e.artifacts-folder=${REPO_ROOT}/_artifacts \
288288
-e2e.config=${REPO_ROOT}/test/e2e/config/cloudstack.yaml \
289289
-e2e.skip-resource-cleanup=false -e2e.use-existing-cluster=true

0 commit comments

Comments
 (0)