From 157cda30cee6814ad2f153c3a0bff38f87188183 Mon Sep 17 00:00:00 2001 From: Shaunak Kashyap Date: Thu, 20 Jul 2023 08:58:52 -0700 Subject: [PATCH] Skip flaky TestEnrollAndLog --- testing/integration/enroll_test.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/testing/integration/enroll_test.go b/testing/integration/enroll_test.go index 96579bd2480..fe06c0d8ffa 100644 --- a/testing/integration/enroll_test.go +++ b/testing/integration/enroll_test.go @@ -32,6 +32,9 @@ func TestEnrollAndLog(t *testing.T) { Local: false, Sudo: true, }) + + t.Skip("Test is flaky; see https://github.com/elastic/elastic-agent/issues/3081") + t.Logf("got namespace: %s", info.Namespace) suite.Run(t, &EnrollRunner{requirementsInfo: info}) }