Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -215,6 +215,20 @@ test-e2e: ## Run e2e tests against a cluster.
-ginkgo.trace \
-ginkgo.show-node-events \
-ginkgo.label-filter=$(E2E_GINKGO_LABEL_FILTER)

.PHONY: e2e-test-vault # Run the e2e tests against a Kind k8s instance that is spun up.
e2e-test-vault:
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Target is duplicate of test-e2e, which is not required. If the idea was to have a different target for vault tests, it instead should be leveraging E2E_GINKGO_LABEL_FILTER to execute selected cases.

@go test -C $(PROJECT_ROOT)/test \
-timeout $(E2E_TIMEOUT) \
-count 1 \
-v \
-p 1 \
-tags e2e \
./e2e \
-ginkgo.v \
-ginkgo.trace \
-ginkgo.show-node-events \
-ginkgo.label-filter="$(E2E_GINKGO_LABEL_FILTER)"

.PHONY: test-apis
test-apis: $(ENVTEST) $(GINKGO) ## Run API integration tests.
Expand Down
Loading