Skip to content

Commit 1b30050

Browse files
committed
fix: keep original test timeout
1 parent e442826 commit 1b30050

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ acceptance: ## Run all acceptance tests
129129
export COVERAGE_FILEPATH="$$ACCEPTANCE_WORKDIR"; \
130130
export COVERAGE_FILENAME="-acceptance"; \
131131
export GOCOVERDIR="$${ACCEPTANCE_WORKDIR}/coverage"; \
132-
cd acceptance && go test ./... ; go tool covdata textfmt -i=$${GOCOVERDIR} -o="$(ROOT_DIR)/coverage-acceptance.out"
132+
cd acceptance && go test -timeout $(ACCEPTANCE_TIMEOUT) ./... ; go tool covdata textfmt -i=$${GOCOVERDIR} -o="$(ROOT_DIR)/coverage-acceptance.out"
133133

134134
# Add @focus above the feature you're hacking on to use this
135135
# (Mainly for use with the feature-% target below)

0 commit comments

Comments
 (0)