Skip to content

Commit 3094ca5

Browse files
authored
Fix make test (#119)
`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 <[email protected]>
1 parent 2d8dea8 commit 3094ca5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ vet: ## Run go vet against code.
6666
go vet ./...
6767

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

7171
FOCUS := $(if $(TEST),-v -focus "$(TEST)")
7272
E2E_FLAGS ?= ""

0 commit comments

Comments
 (0)