Skip to content

Commit 10a9b6d

Browse files
committedAug 31, 2022
try different ginkgo settings
Signed-off-by: Oleg <97077423+RobotSail@users.noreply.github.com>
1 parent 5cdcc97 commit 10a9b6d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -129,9 +129,9 @@ vet: ## Run go vet against code.
129129
go vet ./...
130130

131131
.PHONY: test
132-
GINKGO_ARGS ?= -r --progress --randomize-all --randomize-suites --fail-on-pending --keep-going --cover --coverprofile=cover.profile --race --trace --json-report=report.json --timeout=30s
132+
GINKGO_ARGS ?= --progress --fail-on-pending --keep-going --cover --coverprofile=cover.profile --race --trace --json-report=report.json --timeout=3m
133133
test: lint manifests generate fmt vet lint envtest ginkgo ## Run tests.
134-
KUBEBUILDER_ASSETS="$(shell $(ENVTEST) use $(ENVTEST_K8S_VERSION) -p path)" $(GINKGO) $(GINKGO_ARGS) ./...
134+
KUBEBUILDER_ASSETS="$(shell $(ENVTEST) use $(ENVTEST_K8S_VERSION) -p path)" $(GINKGO) run $(GINKGO_ARGS) ./...
135135

136136
.PHONY: test-e2e
137137
test-e2e: kuttl ## Run e2e tests. Requires cluster w/ Scribe already installed

0 commit comments

Comments
 (0)
Please sign in to comment.