From 02e3cab0470e87af79164de363e96bddf8e7c2f7 Mon Sep 17 00:00:00 2001 From: Todd Short Date: Fri, 3 Feb 2023 09:46:28 -0500 Subject: [PATCH] Fix `make test` `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 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index b4f7b3a29..69f3a22bf 100644 --- a/Makefile +++ b/Makefile @@ -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 ?= ""