From 554df9fc34c56dd74c77e237bfd12beac803b529 Mon Sep 17 00:00:00 2001 From: Paul Tyng Date: Mon, 12 Oct 2020 09:11:20 -0400 Subject: [PATCH] Temporarily turn off make target for release --- GNUmakefile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/GNUmakefile b/GNUmakefile index 9fd673a6a2..c336bcbf9f 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -24,9 +24,7 @@ lint: golangci-lint run ./... test: fmtcheck - go test -i $(TEST) || exit 1 - echo $(TEST) | \ - xargs -t -n4 go test $(TESTARGS) -timeout=30s -parallel=4 + # commenting this out for release tooling, please run testacc instead testacc: fmtcheck TF_ACC=1 go test $(TEST) -v $(TESTARGS) -timeout 120m