From b67127c3578f2e37ddb0feaf9accce7b42a3a9ad Mon Sep 17 00:00:00 2001 From: Victor Lyuboslavsky Date: Fri, 25 Oct 2024 15:05:38 -0500 Subject: [PATCH] Skip TestCronVulnerabilitiesCreatesDatabasesPath (#23263) Seeing very high failure rate for this test. Bug already filed: https://github.com/fleetdm/fleet/issues/23258 --- cmd/fleet/serve_test.go | 1 + 1 file changed, 1 insertion(+) diff --git a/cmd/fleet/serve_test.go b/cmd/fleet/serve_test.go index 3fa8e47140..a3c310adf3 100644 --- a/cmd/fleet/serve_test.go +++ b/cmd/fleet/serve_test.go @@ -307,6 +307,7 @@ func TestAutomationsSchedule(t *testing.T) { } func TestCronVulnerabilitiesCreatesDatabasesPath(t *testing.T) { + t.Skip() // https://github.com/fleetdm/fleet/issues/23258 t.Parallel() ctx, cancelFunc := context.WithCancel(context.Background()) defer cancelFunc()