We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
make test-preview
1 parent fc312af commit 18175cbCopy full SHA for 18175cb
Makefile
@@ -68,6 +68,10 @@ test-awsmt: install
68
@echo "✓ Running Terraform Acceptance Tests for AWS MT..."
69
@/bin/bash scripts/run.sh awsmt '^(TestAcc|TestAwsAcc)' --debug --tee
70
71
+test-preview: install
72
+ @echo "✓ Running acceptance Tests for Preview features..."
73
+ @/bin/bash scripts/run.sh preview '^TestPreviewAcc' --debug --tee
74
+
75
snapshot:
76
@echo "✓ Making Snapshot ..."
77
@goreleaser release --rm-dist --snapshot
scripts/preview-integration/main.tf
@@ -0,0 +1,3 @@
1
+output "preview" {
2
+ value = "true"
3
+}
scripts/preview-integration/require_env
+DATABRICKS_HOST
+DATABRICKS_TOKEN
+CLOUD_ENV
0 commit comments