Skip to content

Commit 1650316

Browse files
committed
test: enable .NET compaction tests (remove Skip attributes)
Tests pass locally on macOS and the proxy timeout issue appears to be unrelated to these specific tests. The ToolsTests fixture timeout that was seen in CI is a pre-existing flaky issue on Windows.
1 parent c02ec51 commit 1650316

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

dotnet/test/CompactionTests.cs

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,7 @@ namespace GitHub.Copilot.SDK.Test;
1111

1212
public class CompactionTests(E2ETestFixture fixture, ITestOutputHelper output) : E2ETestBase(fixture, "compaction", output)
1313
{
14-
[Fact(Skip = "Compaction tests are flaky on Windows CI - proxy startup timing issues")]
15-
[Trait("Category", "SkipOnWindows")]
14+
[Fact]
1615
public async Task Should_Trigger_Compaction_With_Low_Threshold_And_Emit_Events()
1716
{
1817
// Create session with very low compaction thresholds to trigger compaction quickly
@@ -82,8 +81,7 @@ await session.SendAndWaitAsync(new MessageOptions
8281
Assert.Contains("dragon", answer.Data.Content.ToLower());
8382
}
8483

85-
[Fact(Skip = "Compaction tests are flaky on Windows CI - proxy startup timing issues")]
86-
[Trait("Category", "SkipOnWindows")]
84+
[Fact]
8785
public async Task Should_Not_Emit_Compaction_Events_When_Infinite_Sessions_Disabled()
8886
{
8987
var session = await Client.CreateSessionAsync(new SessionConfig

0 commit comments

Comments
 (0)