We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1aa9449 commit c17a032Copy full SHA for c17a032
1 file changed
Makefile
@@ -102,6 +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
+ # The timeout here was previously 1 second, but we've made it longer because we were seeing timeouts when testing with Sealights
106
@set -o pipefail && go test -race -covermode=atomic -coverprofile=coverage-unit.out -timeout 10s -tags=unit ./... | $(TEST_OUTPUT_FILTER)
107
@echo "Integration tests:"
108
@set -o pipefail && go test -race -covermode=atomic -coverprofile=coverage-integration.out -timeout 15s -tags=integration ./... | $(TEST_OUTPUT_FILTER)
0 commit comments