You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Makefile
-14Lines changed: 0 additions & 14 deletions
Original file line number
Diff line number
Diff line change
@@ -102,7 +102,6 @@ TEST_OUTPUT_FILTER=grep -vE '0.0% of statements|\[no test files\]'
102
102
.PHONY: test
103
103
test: ## Run all unit tests
104
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
105
@set -o pipefail && go test -race -covermode=atomic -coverprofile=coverage-unit.out -timeout 10s -tags=unit ./... |$(TEST_OUTPUT_FILTER)
107
106
@echo "Integration tests:"
108
107
@set -o pipefail && go test -race -covermode=atomic -coverprofile=coverage-integration.out -timeout 15s -tags=integration ./... |$(TEST_OUTPUT_FILTER)
@@ -131,19 +130,6 @@ acceptance: ## Run all acceptance tests
131
130
cd acceptance && go test -coverprofile "$$ACCEPTANCE_WORKDIR/coverage-acceptance.out" -timeout $(ACCEPTANCE_TIMEOUT) ./... &&\
132
131
go run -modfile "$$ACCEPTANCE_WORKDIR/tools/go.mod" github.com/wadey/gocovmerge "$$ACCEPTANCE_WORKDIR/coverage-acceptance.out">"$(ROOT_DIR)/coverage-acceptance.out"
133
132
134
-
acceptance-sealights: ## Run all acceptance tests with sealights integration
0 commit comments