Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(fleet): Mark TestInstallParity as flaky #33550

Merged
merged 1 commit into from
Jan 29, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions test/new-e2e/tests/installer/script/default_script_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import (
"os"
"strings"

"github.com/DataDog/datadog-agent/pkg/util/testutil/flake"
awshost "github.com/DataDog/datadog-agent/test/new-e2e/pkg/provisioners/aws/host"
"github.com/DataDog/datadog-agent/test/new-e2e/pkg/utils/e2e/client"
e2eos "github.com/DataDog/test-infra-definitions/components/os"
Expand Down Expand Up @@ -85,6 +86,8 @@ func (s *installScriptDefaultSuite) TestInstallParity() {
s.T().Skip("Skipping test due to missing E2E_PIPELINE_ID variable")
}

flake.Mark(s.T()) // TODO: Fixme once installer 0.10.0 is released

defer s.Purge()

// Full supported option set
Expand Down
Loading