Skip to content

Commit a009fab

Browse files
authored
[APM] Mark test as flaky on macOS (#44162)
### What does this PR do? This test is flaky on macos Gitlub runners ([example](https://gitlab.ddbuild.io/DataDog/datadog-agent/-/jobs/1285899883)) ### Motivation ### Describe how you validated your changes ### Additional Notes Co-authored-by: inigo.lopezdeheredia <inigo.lopezdeheredia@datadoghq.com>
1 parent df3fc28 commit a009fab

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

pkg/trace/agent/agent_test.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3499,6 +3499,10 @@ func TestMergeDuplicates(t *testing.T) {
34993499
}
35003500

35013501
func TestProcessStatsTimeout(t *testing.T) {
3502+
if os.Getenv("CI") == "true" && runtime.GOOS == "darwin" {
3503+
t.Skip("TestProcessStatsTimeout is known to fail on the macOS Gitlab runners.")
3504+
}
3505+
35023506
cfg := config.New()
35033507
cfg.Endpoints[0].APIKey = "test"
35043508
ctx, cancel := context.WithCancel(context.Background())

0 commit comments

Comments
 (0)