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.
1 parent bebe7f0 commit 194ffadCopy full SHA for 194ffad
scripts/terraform/terraform.mk
@@ -76,8 +76,9 @@ terraform-validate: terraform-init-no-backend # Validate Terraform changes - mak
76
terraform -chdir=infrastructure/terraform validate
77
78
notifications-smoke-test:
79
- $(if ${TF_VAR_run_notifications_smoke_test}, \
80
- pip install pytest mesh-client \
81
- pytest -vv scripts/python/smoke_test/notifications_smoke_test.py, \
82
- echo "Notifications smoke test skipped." \
83
- )
+ if test "${RUN_NOTIFICATIONS_SMOKE_TEST}" == "true"; then
+ pip install pytest mesh-client
+ pytest -vv scripts/python/smoke_test/notifications_smoke_test.py
+ else
+ echo "Skipping notifications smoke test"
84
+ fi
0 commit comments