From db516b6e7262412d535addd7b28c377958ae9889 Mon Sep 17 00:00:00 2001 From: Andrew Nester Date: Wed, 18 Dec 2024 14:34:01 +0100 Subject: [PATCH] fixed test for gcp --- integration/bundle/apps_test.go | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/integration/bundle/apps_test.go b/integration/bundle/apps_test.go index 7fc565e91..aa0d1a467 100644 --- a/integration/bundle/apps_test.go +++ b/integration/bundle/apps_test.go @@ -15,6 +15,11 @@ import ( func TestDeployBundleWithApp(t *testing.T) { ctx, wt := acc.WorkspaceTest(t) + + if testutil.GetCloud(t) == testutil.GCP { + t.Skip("Skipping test for GCP cloud because /api/2.0/apps is temporarily unavailable there.") + } + uniqueId := uuid.New().String() appId := fmt.Sprintf("app-%s", uuid.New().String()[0:8]) nodeTypeId := testutil.GetCloud(t).NodeTypeID()