From 56c58c95737e6de9f797502d2863177d7a11fbe7 Mon Sep 17 00:00:00 2001 From: Sebastian Korfmann Date: Sat, 18 Jul 2020 00:49:35 +0200 Subject: [PATCH] Disable terraform cloud integration test --- test/test-terraform-cloud/test.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/test-terraform-cloud/test.sh b/test/test-terraform-cloud/test.sh index 323bf04626..73b3ad45ad 100755 --- a/test/test-terraform-cloud/test.sh +++ b/test/test-terraform-cloud/test.sh @@ -4,6 +4,10 @@ set -e # Disable spinner even when we have a TTY export CI='1' +# On master multiple builds might be running and leading to locks - skip always until +# that's fixed +echo "DISABLED - skipping" && exit 0; + # Don't run on external Pull Requests - Will be addressed properly with # https://github.com/hashicorp/terraform-cdk/issues/200 [ -z "$TERRAFORM_CLOUD_TOKEN" ] && echo "Need to set TERRAFORM_CLOUD_TOKEN - skipping" && exit 0;