Files
terraform-provider-unifi/Makefile
2025-02-07 01:09:36 +01:00

16 lines
294 B
Makefile

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