Skip to content

Commit

Permalink
Merge pull request #1139 from sthaha/increase-test-timeout
Browse files Browse the repository at this point in the history
fix(test): set benchmark test timeout to 30m
  • Loading branch information
sthaha authored Dec 20, 2023
2 parents ac21a81 + 80c1f45 commit e2db472
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,11 @@ test: ginkgo-set tidy-vendor
test-verbose: ginkgo-set tidy-vendor
@echo TAGS=$(GO_BUILD_TAGS)
@echo GOENV=$(GOENV)
@$(GOENV) go test -tags $(GO_BUILD_TAGS) -covermode=atomic -coverprofile=coverage.out -v $$(go list ./... | grep pkg | grep -v bpfassets) --race --bench=. -cover --count=1 --vet=all
@$(GOENV) go test -tags $(GO_BUILD_TAGS) \
-timeout=30m \
-covermode=atomic -coverprofile=coverage.out \
-v $$(go list ./... | grep pkg | grep -v bpfassets) \
--race --bench=. -cover --count=1 --vet=all

test-mac-verbose: ginkgo-set
@echo TAGS=$(GO_BUILD_TAGS)
Expand Down

0 comments on commit e2db472

Please sign in to comment.