From 75c8ca6433fe327aee2df7a0faf1431bfe9033bc Mon Sep 17 00:00:00 2001 From: "agent-platform-auto-pr[bot]" <153269286+agent-platform-auto-pr[bot]@users.noreply.github.com> Date: Mon, 5 Aug 2024 13:33:54 +0000 Subject: [PATCH] [Backport 7.55.x] [FA] Mark apm inject as flaky (#27703) Co-authored-by: chouetz Co-authored-by: KevinFairise2 Co-authored-by: coignetp --- test/new-e2e/go.mod | 2 +- test/new-e2e/go.sum | 4 ++-- test/new-e2e/tests/installer/all_packages_test.go | 3 +++ 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/test/new-e2e/go.mod b/test/new-e2e/go.mod index f9bdd18595227..2afd553eca706 100644 --- a/test/new-e2e/go.mod +++ b/test/new-e2e/go.mod @@ -29,7 +29,7 @@ require ( // `TEST_INFRA_DEFINITIONS_BUILDIMAGES` matches the commit sha in the module version // Example: github.com/DataDog/test-infra-definitions v0.0.0-YYYYMMDDHHmmSS-0123456789AB // => TEST_INFRA_DEFINITIONS_BUILDIMAGES: 0123456789AB - github.com/DataDog/test-infra-definitions v0.0.0-20240527153959-63d1aae5f639 + github.com/DataDog/test-infra-definitions v0.0.0-20240719082229-91c2acfd76e4 github.com/aws/aws-sdk-go-v2 v1.26.1 github.com/aws/aws-sdk-go-v2/config v1.27.11 github.com/aws/aws-sdk-go-v2/service/ec2 v1.138.1 diff --git a/test/new-e2e/go.sum b/test/new-e2e/go.sum index cfa520f9a7499..5515c964758ca 100644 --- a/test/new-e2e/go.sum +++ b/test/new-e2e/go.sum @@ -12,8 +12,8 @@ github.com/DataDog/datadog-api-client-go/v2 v2.26.0 h1:bZr0hu+hx8L91+yU5EGw8wK3F github.com/DataDog/datadog-api-client-go/v2 v2.26.0/go.mod h1:QKOu6vscsh87fMY1lHfLEmNSunyXImj8BUaUWJXOehc= github.com/DataDog/mmh3 v0.0.0-20200805151601-30884ca2197a h1:m9REhmyaWD5YJ0P53ygRHxKKo+KM+nw+zz0hEdKztMo= github.com/DataDog/mmh3 v0.0.0-20200805151601-30884ca2197a/go.mod h1:SvsjzyJlSg0rKsqYgdcFxeEVflx3ZNAyFfkUHP0TxXg= -github.com/DataDog/test-infra-definitions v0.0.0-20240527153959-63d1aae5f639 h1:4UCnMqoGM5MXYqr3oRJXSwOhI7GucrFRWRlhyITVCnI= -github.com/DataDog/test-infra-definitions v0.0.0-20240527153959-63d1aae5f639/go.mod h1:0pVTOq+g//6IFCQy8XtIWKsvklC3NM2f172kKUDsm7Q= +github.com/DataDog/test-infra-definitions v0.0.0-20240719082229-91c2acfd76e4 h1:F9EER5hH8JsFpJZLcRwn8HSLA0M4MngNJjyD9tl3wCI= +github.com/DataDog/test-infra-definitions v0.0.0-20240719082229-91c2acfd76e4/go.mod h1:0pVTOq+g//6IFCQy8XtIWKsvklC3NM2f172kKUDsm7Q= github.com/DataDog/zstd v1.5.2 h1:vUG4lAyuPCXO0TLbXvPv7EB7cNK1QV/luu55UHLrrn8= github.com/DataDog/zstd v1.5.2/go.mod h1:g4AWEaM3yOg3HYfnJ3YIawPnVdXJh9QME85blwSAmyw= github.com/DataDog/zstd_0 v0.0.0-20210310093942-586c1286621f h1:5Vuo4niPKFkfwW55jV4vY0ih3VQ9RaQqeqY67fvRn8A= diff --git a/test/new-e2e/tests/installer/all_packages_test.go b/test/new-e2e/tests/installer/all_packages_test.go index 298dee72376bf..ac2928b382081 100644 --- a/test/new-e2e/tests/installer/all_packages_test.go +++ b/test/new-e2e/tests/installer/all_packages_test.go @@ -95,6 +95,9 @@ func TestPackages(t *testing.T) { if flavor.Flavor == e2eos.Fedora { flake.Mark(t) } + if strings.Contains(t.Name(), "apm") { + flake.Mark(t) + } opts := []awshost.ProvisionerOption{ awshost.WithEC2InstanceOptions(ec2.WithOSArch(flavor, flavor.Architecture)), awshost.WithoutAgent(),