From b269563553b9b3111b117215b749369eae691c36 Mon Sep 17 00:00:00 2001 From: Mateusz Filipowicz Date: Sun, 16 Mar 2025 15:55:10 +0100 Subject: [PATCH] ci: remove constraint on acceptance tests parallelism (#59) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index c32e040..dff7c2e 100644 --- a/Makefile +++ b/Makefile @@ -13,4 +13,4 @@ build: .PHONY: testacc testacc: go build ./... - TF_LOG_PROVIDER=debug TF_ACC=1 go test $(TEST) -test.parallel 2 -v -count $(TEST_COUNT) -timeout $(TEST_TIMEOUT) $(TESTARGS) + TF_ACC=1 go test $(TEST) -v -count $(TEST_COUNT) -timeout $(TEST_TIMEOUT) $(TESTARGS)