You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -54,7 +51,7 @@ vet: ## Run go vet against code.
54
51
go vet ./...
55
52
56
53
ENVTEST_ASSETS_DIR=$(shell pwd)/testbin
57
-
test: embed-bundle manifests generate fmt vet ## Run tests.
54
+
test: manifests generate fmt vet ## Run tests.
58
55
mkdir -p ${ENVTEST_ASSETS_DIR}
59
56
test -f ${ENVTEST_ASSETS_DIR}/setup-envtest.sh || curl -sSLo ${ENVTEST_ASSETS_DIR}/setup-envtest.sh https://raw.githubusercontent.com/kubernetes-sigs/controller-runtime/v0.8.3/hack/setup-envtest.sh
60
57
source${ENVTEST_ASSETS_DIR}/setup-envtest.sh; fetch_envtest_tools $(ENVTEST_ASSETS_DIR); setup_envtest_env $(ENVTEST_ASSETS_DIR); go test ./... -coverprofile cover.out
@@ -64,7 +61,7 @@ GOLANGCI_VERSION ?= v1.40.1
64
61
$(GOLANGCI_LINT):
65
62
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b "$(PWD)/bin"$(GOLANGCI_VERSION)
66
63
67
-
lint: $(GOLANGCI_LINT)embed-bundle ## Run linting.
0 commit comments