* ci: try to fix text file busy error * set up terraform explicitly before running tests * remove limitation on parallel tests run
17 lines
293 B
Makefile
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)
|