Files
terraform-provider-unifi/Makefile
Mateusz Filipowicz ccac6edebe 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
2025-02-26 20:22:33 +01:00

17 lines
293 B
Makefile

TEST ?= ./...
TESTARGS ?=
TEST_COUNT ?= 1
TEST_TIMEOUT ?= 20m
.PHONY: default
default: build
.PHONY: build
build:
go install
.PHONY: testacc
testacc:
go build ./...
TF_LOG_PROVIDER=debug TF_ACC=1 go test $(TEST) -v -count $(TEST_COUNT) -timeout $(TEST_TIMEOUT) $(TESTARGS)