diff --git a/pkg/logs/launchers/integration/launcher_test.go b/pkg/logs/launchers/integration/launcher_test.go index 8dfa126798833..4f68b18b81754 100644 --- a/pkg/logs/launchers/integration/launcher_test.go +++ b/pkg/logs/launchers/integration/launcher_test.go @@ -8,6 +8,7 @@ package integration import ( "os" "path/filepath" + "runtime" "testing" "github.com/stretchr/testify/assert" @@ -25,6 +26,7 @@ import ( "github.com/DataDog/datadog-agent/pkg/logs/pipeline/mock" "github.com/DataDog/datadog-agent/pkg/logs/sources" "github.com/DataDog/datadog-agent/pkg/logs/status" + "github.com/DataDog/datadog-agent/pkg/util/testutil/flake" ) type LauncherTestSuite struct { @@ -40,6 +42,10 @@ type LauncherTestSuite struct { } func (suite *LauncherTestSuite) SetupTest() { + if runtime.GOOS == "windows" { + flake.Mark(suite.T()) + } + suite.pipelineProvider = mock.NewMockProvider() suite.outputChan = suite.pipelineProvider.NextPipelineChan() suite.integrationsComp = integrationsmock.Mock()