From 033f0469e077441a1c99f94bf5746204065e87eb Mon Sep 17 00:00:00 2001 From: Shaunak Kashyap Date: Fri, 13 Dec 2024 11:07:27 -0800 Subject: [PATCH] Skip tests that depend on 8.17.1-SNAPSHOT artifacts being available (#4214) --- .buildkite/pipeline.yml | 1 + testing/e2e/agent_install_test.go | 1 + 2 files changed, 2 insertions(+) diff --git a/.buildkite/pipeline.yml b/.buildkite/pipeline.yml index c06d0d1bf..c18c5af32 100644 --- a/.buildkite/pipeline.yml +++ b/.buildkite/pipeline.yml @@ -150,6 +150,7 @@ steps: - label: ":gcloud: Cloud e2e Test" key: "cloud-e2e-test" + skip: "8.17.1-SNAPSHOT not available on ESS" command: ".buildkite/scripts/cloud_e2e_test.sh" agents: provider: "gcp" diff --git a/testing/e2e/agent_install_test.go b/testing/e2e/agent_install_test.go index e575a874a..908b9ca19 100644 --- a/testing/e2e/agent_install_test.go +++ b/testing/e2e/agent_install_test.go @@ -58,6 +58,7 @@ type Artifact struct { } func TestAgentInstallSuite(t *testing.T) { + t.Skip("temporary skip until elastic-agent-8.17.1-SNAPSHOT artifact is available") suite.Run(t, new(AgentInstallSuite)) }