Skip to content

Commit

Permalink
Update acceptance test workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
arybolovlev committed Nov 30, 2023
1 parent 82a98f1 commit 3292a5a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/acceptance_tests_aks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
terraform apply -auto-approve
- name: Run Tests
env:
TESTARGS: -run '${{ github.event.inputs.runTests || "^TestAcc"}}'
TESTARGS: -run ${{ github.event.inputs.runTests || '^TestAcc' }}
ARM_SUBSCRIPTION_ID: ${{ secrets.ARM_SUBSCRIPTION_ID }}
run: |
make testacc
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/acceptance_tests_eks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ jobs:
terraform apply -auto-approve
- name: Run Acceptance Test Suite
env:
TESTARGS: -run '${{ github.event.inputs.runTests || "^TestAcc"}}'
TESTARGS: -run ${{ github.event.inputs.runTests || '^TestAcc' }}
# Do not set TF_ACC_TERRAFORM_PATH or TF_ACC_TERRAFORM_VERSION.
# In this case, the framework will search for the Terraform CLI binary based on the operating system PATH.
# Eventually, it will use the one we set up.
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/acceptance_tests_gke.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ jobs:
terraform apply -auto-approve
- name: Run Acceptance Test Suite
env:
TESTARGS: -run '${{ github.event.inputs.runTests || "^TestAcc"}}'
TESTARGS: -run ${{ github.event.inputs.runTests || '^TestAcc' }}
# Do not set TF_ACC_TERRAFORM_PATH or TF_ACC_TERRAFORM_VERSION.
# In this case, the framework will search for the Terraform CLI binary based on the operating system PATH.
# Eventually, it will use the one we set up.
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/acceptance_tests_kind.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
- name: Run Acceptance Test Suite
env:
KUBE_CONFIG_PATH: ${{ env.KUBECONFIG }}
TESTARGS: -run '${{ github.event.inputs.runTests || "^TestAcc"}}'
TESTARGS: -run ${{ github.event.inputs.runTests || '^TestAcc' }}
# Do not set TF_ACC_TERRAFORM_PATH or TF_ACC_TERRAFORM_VERSION.
# In this case, the framework will search for the Terraform CLI binary based on the operating system PATH.
# Eventually, it will use the one we set up.
Expand Down

0 comments on commit 3292a5a

Please sign in to comment.