We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 22d189d commit 22eedc4Copy full SHA for 22eedc4
Makefile
@@ -11,7 +11,7 @@ build: terraform-provider-coder
11
12
# Builds the provider. Note that as coder/coder is based on
13
# alpine, we need to disable cgo.
14
-terraform-provider-coder: provider/*.go main.go
+terraform-provider-coder: provider/*.go tpfprovider/*.go main.go
15
CGO_ENABLED=0 go build .
16
17
# Run integration tests
@@ -22,4 +22,4 @@ test-integration: terraform-provider-coder
22
# Run acceptance tests
23
.PHONY: testacc
24
testacc:
25
- TF_ACC=1 go test ./... -v $(TESTARGS) -timeout 120m
+ TF_ACC=1 go test ./... -v -count=1 $(TESTARGS) -timeout 120m
0 commit comments