ci: fix text file busy error causing test flakiness (#30)

* ci: try to fix text file busy error

* set up terraform explicitly before running tests

* remove limitation on parallel tests run
This commit is contained in:
Mateusz Filipowicz
2025-02-26 20:22:33 +01:00
committed by GitHub
parent 5cf4ea69ad
commit ccac6edebe
2 changed files with 10 additions and 4 deletions

View File

@@ -12,4 +12,5 @@ build:
.PHONY: testacc
testacc:
TF_LOG_PROVIDER=debug TF_ACC=1 go test $(TEST) -test.parallel 2 -v -count $(TEST_COUNT) -timeout $(TEST_TIMEOUT) $(TESTARGS)
go build ./...
TF_LOG_PROVIDER=debug TF_ACC=1 go test $(TEST) -v -count $(TEST_COUNT) -timeout $(TEST_TIMEOUT) $(TESTARGS)