We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5179146 commit 1aa9449Copy full SHA for 1aa9449
1 file changed
Makefile
@@ -102,7 +102,7 @@ TEST_OUTPUT_FILTER=grep -vE '0.0% of statements|\[no test files\]'
102
.PHONY: test
103
test: ## Run all unit tests
104
@echo "Unit tests:"
105
- @set -o pipefail && go test -race -covermode=atomic -coverprofile=coverage-unit.out -timeout 1s -tags=unit ./... | $(TEST_OUTPUT_FILTER)
+ @set -o pipefail && go test -race -covermode=atomic -coverprofile=coverage-unit.out -timeout 10s -tags=unit ./... | $(TEST_OUTPUT_FILTER)
106
@echo "Integration tests:"
107
@set -o pipefail && go test -race -covermode=atomic -coverprofile=coverage-integration.out -timeout 15s -tags=integration ./... | $(TEST_OUTPUT_FILTER)
108
# Given the nature of generative tests the test timeout is increased from 500ms
0 commit comments