Skip to content

Commit ea09312

Browse files
committed
cleanup
1 parent 4614cb8 commit ea09312

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ terraform-provider-aap
66
*.tfstate
77
*.tfstate.*
88
*.tfrc
9-
*.txt
109

1110
# Crash log files
1211
crash.log

Makefile

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,13 @@ test: ## Execute all unit tests with verbose output."
1313
@echo "==> Running unit tests..."
1414
go test -v ./...
1515

16-
testacc: ## Run acceptance tests against local aap-dev instance (https://localhost:9080)."
16+
testacc: ## Run acceptance tests against local aap-dev instance (https://localhost:8043)."
1717
@echo "==> Running acceptance tests..."
18-
TF_ACC=1 AAP_HOST="http://localhost:9080" go test -count=1 -v ./...
18+
TF_ACC=1 AAP_HOST="http://localhost:8043" go test -count=1 -v ./...
19+
20+
testacc-aapdev: ## Run acceptance tests against local aap-dev instance (EXPORT AAP_HOST="http://localhost:9080")
21+
@echo "==> Running acceptance tests..."
22+
TF_ACC=1 go test -count=1 -v ./...
1923

2024
generatedocs: ## Format example Terraform configurations and generate plugin documentation."
2125
@echo "==> Formatting examples and generating docs..."

0 commit comments

Comments
 (0)