We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6dea731 commit 9f7726bCopy full SHA for 9f7726b
Makefile
@@ -6,6 +6,7 @@ VERSION=0.9.6
6
OS=$(shell go env GOOS)
7
ARCH=$(shell go env GOARCH)
8
OS_ARCH=${OS}_${ARCH}
9
+TEST_FILTER?=.*
10
11
default: install
12
@@ -40,7 +41,9 @@ setup:
40
41
cd tools && go install github.com/hashicorp/terraform-plugin-docs/cmd/tfplugindocs
42
43
acctest:
- TF_ACC=1 PORT_CLIENT_ID=$(PORT_CLIENT_ID) PORT_CLIENT_SECRET=$(PORT_CLIENT_SECRET) PORT_BASE_URL=$(PORT_BASE_URL) go test -p 1 ./...
44
+ # TEST_FILTER can be any regex, E.g: .*PageResource.*
45
+ # TEST_FILTER='TestAccPortPageResource*' make acctest
46
+ TF_ACC=1 PORT_CLIENT_ID=$(PORT_CLIENT_ID) PORT_CLIENT_SECRET=$(PORT_CLIENT_SECRET) PORT_BASE_URL=$(PORT_BASE_URL) go test -p 1 ./... -run "$(TEST_FILTER)"
47
48
gen-docs:
49
tfplugindocs
0 commit comments