We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fae5286 commit 206035dCopy full SHA for 206035d
1 file changed
Makefile
@@ -59,6 +59,10 @@ vet: ## Run go vet against code.
59
test: manifests generate fmt vet envtest ## Run tests.
60
KUBEBUILDER_ASSETS="$(shell $(ENVTEST) use $(ENVTEST_K8S_VERSION) -p path)" go test ./... -coverprofile cover.out
61
62
+.PHONY: test-debug
63
+test-debug: manifests generate fmt vet envtest ## Run tests.
64
+ KUBEBUILDER_ASSETS="$(shell $(ENVTEST) use $(ENVTEST_K8S_VERSION) -p path)" go test ./... -coverprofile cover.out -ginkgo.v -ginkgo.progress -test.v
65
+
66
##@ Build
67
68
.PHONY: build
0 commit comments