From 75984d67fa630900fa71ea7a911650ad15f0db67 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20Ma=CC=88der?= Date: Tue, 2 Feb 2021 20:53:36 +0100 Subject: [PATCH] Remove vet and fmt from test step in Makefile Since these two run seperately as `make lint` anyway, we don't need them with every test. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 090c8f4d9..45eabf8fd 100644 --- a/Makefile +++ b/Makefile @@ -19,7 +19,7 @@ ENVTEST_ASSETS_DIR=$(shell pwd)/testbin all: build ## Invokes the build target .PHONY: test -test: fmt vet ## Run tests +test: ## Run tests go test ./... -coverprofile cover.out # See https://storage.googleapis.com/kubebuilder-tools/ for list of supported K8s versions