From fde41cf53419ab2cdb580ae10d4c460b1d6180fc Mon Sep 17 00:00:00 2001 From: Craig MacKenzie Date: Mon, 31 Jul 2023 15:15:32 -0400 Subject: [PATCH] Skip flaky retry upgrade test. (#3156) This will fix the build on main and avoid wasting time while we investigate the root cause. See https://github.com/elastic/elastic-agent/issues/3155 This test fails often enough for me that we just need to disable it while we investigate. (cherry picked from commit b60b8b04c41f67a07958b59d18977ba0229bf233) --- testing/integration/upgrade_test.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/testing/integration/upgrade_test.go b/testing/integration/upgrade_test.go index ecbe2800f5b..ab1da0086cf 100644 --- a/testing/integration/upgrade_test.go +++ b/testing/integration/upgrade_test.go @@ -358,6 +358,8 @@ func TestStandaloneUpgradeRetryDownload(t *testing.T) { }, // modifying /etc/hosts }) + t.Skip("Flaky test: https://github.com/elastic/elastic-agent/issues/3155") + upgradeFromVersion, err := version.ParseVersion(define.Version()) require.NoError(t, err)