Skip to content

Commit

Permalink
Fix make test (#119)
Browse files Browse the repository at this point in the history
`make test` runs all the tests: `e2e` and `test-unit`
The `test-e2e` is only the test; it does not include setup and teardown,
whereas `e2e` does.

Signed-off-by: Todd Short <tshort@redhat.com>
  • Loading branch information
tmshort committed Feb 3, 2023
1 parent 2d8dea8 commit 3094ca5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ vet: ## Run go vet against code.
go vet ./...

.PHONY: test test-e2e e2e kind-load kind-cluster kind-cluster-cleanup
test: manifests generate fmt vet test-unit test-e2e ## Run all tests.
test: manifests generate fmt vet test-unit e2e ## Run all tests.

FOCUS := $(if $(TEST),-v -focus "$(TEST)")
E2E_FLAGS ?= ""
Expand Down

0 comments on commit 3094ca5

Please sign in to comment.