Skip to content

Commit cbf0f60

Browse files
authored
Skip the flaky XUnit named pipes tests (#6528)
## Summary of changes Skip the named pipes tests for now ## Reason for change These are very flaky, and aren't an explicitly supported scenario. ## Implementation details Just disable the test - we can look at re-enabling them again once/if we move to an aspnetcore-based internal agent, in the hope that solves the flake ## Test coverage Less now ## Other details There is a separate CI Vis flake issue which appears to be a deadlock on arm64, that's being looked at separately
1 parent 40b9770 commit cbf0f60

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tracer/test/Datadog.Trace.ClrProfiler.IntegrationTests/CI/PipesXUnitEvpTests.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ namespace Datadog.Trace.ClrProfiler.IntegrationTests.CI;
1515
[Collection(nameof(TransportTestsCollection))]
1616
public class PipesXUnitEvpTests(ITestOutputHelper output) : XUnitEvpTests(output)
1717
{
18-
[SkippableTheory]
18+
[SkippableTheory(Skip = "These are currently very flaky - revisit once we move to aspnetcore-based mock agent")]
1919
[MemberData(nameof(GetData))]
2020
[Trait("RunOnWindows", "True")]
2121
[Trait("Category", "EndToEnd")]
@@ -43,7 +43,7 @@ public override async Task SubmitTraces(string packageVersion, string evpVersion
4343
}
4444
}
4545

46-
[SkippableTheory]
46+
[SkippableTheory(Skip = "These are currently very flaky - revisit once we move to aspnetcore-based mock agent")]
4747
[MemberData(nameof(GetDataForEarlyFlakeDetection))]
4848
[Trait("RunOnWindows", "True")]
4949
[Trait("Category", "EndToEnd")]

0 commit comments

Comments
 (0)