Skip to content

Commit

Permalink
Marking pkg/logs/launchers/integration/LauncherTestSuite as flaky (#3…
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosroman authored Oct 10, 2024
1 parent 304623b commit d51e114
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions pkg/logs/launchers/integration/launcher_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ package integration
import (
"os"
"path/filepath"
"runtime"
"testing"

"github.com/stretchr/testify/assert"
Expand All @@ -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 {
Expand All @@ -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()
Expand Down

0 comments on commit d51e114

Please sign in to comment.