Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,13 @@ build:

# acceptance tests
.PHONY: test
test:
test: build
cd v2 && \
TF_ACC=1 go test -v ./... && \
cd -

.PHONY: test-run
test-run:
test-run: build
cd v2 && \
go vet ./... && \
TF_ACC=1 go test -v ./... -run $(case) && \
Expand Down
2 changes: 1 addition & 1 deletion dev.tfrc
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ provider_installation {
# verifications for this provider and forces Terraform to look for the
# null provider plugin in the given directory.
dev_overrides {
"zededa/zedcloud" = "<path/to/module/>github.com/zededa/terraform-provider-zedcloud"
"zededa/zedcloud" = "./v2"
}

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