Skip to content

Commit 206035d

Browse files
committed
Add debug test target
1 parent fae5286 commit 206035d

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

Makefile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,10 @@ vet: ## Run go vet against code.
5959
test: manifests generate fmt vet envtest ## Run tests.
6060
KUBEBUILDER_ASSETS="$(shell $(ENVTEST) use $(ENVTEST_K8S_VERSION) -p path)" go test ./... -coverprofile cover.out
6161

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+
6266
##@ Build
6367

6468
.PHONY: build

0 commit comments

Comments
 (0)