16 lines
272 B
Makefile
16 lines
272 B
Makefile
TEST ?= ./...
|
|
TESTARGS ?=
|
|
TEST_COUNT ?= 1
|
|
TEST_TIMEOUT ?= 10m
|
|
|
|
.PHONY: default
|
|
default: build
|
|
|
|
.PHONY: build
|
|
build:
|
|
go install
|
|
|
|
.PHONY: testacc
|
|
testacc:
|
|
TF_ACC=1 go test $(TEST) -test.parallel 2 -v -count $(TEST_COUNT) -timeout $(TEST_TIMEOUT) $(TESTARGS)
|