Skip to content

Commit ecb02de

Browse files
feat/pm-291: Modified dev.tfrc and Makefile to simplify running tests (#120)
1 parent 14b12ae commit ecb02de

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,13 +43,13 @@ build:
4343

4444
# acceptance tests
4545
.PHONY: test
46-
test:
46+
test: build
4747
cd v2 && \
4848
TF_ACC=1 go test -v ./... && \
4949
cd -
5050

5151
.PHONY: test-run
52-
test-run:
52+
test-run: build
5353
cd v2 && \
5454
go vet ./... && \
5555
TF_ACC=1 go test -v ./... -run $(case) && \

dev.tfrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ provider_installation {
55
# verifications for this provider and forces Terraform to look for the
66
# null provider plugin in the given directory.
77
dev_overrides {
8-
"zededa/zedcloud" = "<path/to/module/>github.com/zededa/terraform-provider-zedcloud"
8+
"zededa/zedcloud" = "./v2"
99
}
1010

1111
# For all other providers, install them directly from their origin provider

0 commit comments

Comments
 (0)