Skip to content

Commit

Permalink
Set timeout to 5m for non-acceptance tests. (#1267)
Browse files Browse the repository at this point in the history
  • Loading branch information
benashz authored Dec 22, 2021
1 parent 9e24828 commit 78bdd58
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions GNUmakefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ build: fmtcheck
test: fmtcheck
go test $(TEST) || exit 1
echo $(TEST) | \
xargs -t -n4 go test $(TESTARGS) -timeout=30s -parallel=4
xargs -t -n4 go test $(TESTARGS) -timeout=5m -parallel=4

testacc: fmtcheck
TF_ACC=1 go test $(TEST) -v $(TESTARGS) -timeout 20m
Expand Down Expand Up @@ -66,4 +66,3 @@ endif
@$(MAKE) -C $(GOPATH)/src/$(WEBSITE_REPO) website-provider-test PROVIDER_PATH=$(shell pwd) PROVIDER_NAME=$(PKG_NAME)

.PHONY: build test testacc vet fmt fmtcheck errcheck test-compile website website-test

0 comments on commit 78bdd58

Please sign in to comment.