Skip to content

Commit

Permalink
Disable flaky tests (#1004)
Browse files Browse the repository at this point in the history
  • Loading branch information
cijothomas committed Feb 15, 2023
1 parent 9c89abf commit f88afdb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ namespace OpenTelemetry.Extensions.Tests.Trace;

public class AutoFlushActivityProcessorTests
{
[Fact]
[Fact(Skip = "Unstable")]
public void AutoFlushActivityProcessor_FlushAfterLocalServerSideRootSpans_EndMatchingSpan_Flush()
{
var mockExporting = new Mock<BaseProcessor<Activity>>();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public void EventCounter()
Assert.Equal(1997.0202, GetActualValue(metric));
}

[Fact]
[Fact(Skip = "Unstable")]
public void IncrementingEventCounter()
{
// Arrange
Expand Down Expand Up @@ -81,7 +81,7 @@ public void IncrementingEventCounter()
Assert.Equal(3, GetActualValue(metric));
}

[Fact]
[Fact(Skip = "Unstable")]
public void PollingCounter()
{
// Arrange
Expand All @@ -107,7 +107,7 @@ public void PollingCounter()
Assert.Equal(10, GetActualValue(metric));
}

[Fact]
[Fact(Skip = "Unstable")]
public void IncrementingPollingCounter()
{
// Arrange
Expand Down

0 comments on commit f88afdb

Please sign in to comment.