Skip to content

Commit

Permalink
[chore] Skip TestDefaultBatcher_NoSplit_WithTimeout on Windows (#11870)
Browse files Browse the repository at this point in the history
Relates to #11869
  • Loading branch information
mx-psi authored Dec 12, 2024
1 parent 85558a9 commit 73ed007
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions exporter/internal/queue/default_batcher_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,10 @@ func TestDefaultBatcher_NoSplit_TimeoutDisabled(t *testing.T) {
}

func TestDefaultBatcher_NoSplit_WithTimeout(t *testing.T) {
if runtime.GOOS == "windows" {
t.Skip("Skipping test on Windows, see https://github.com/open-telemetry/opentelemetry-collector/issues/11869")
}

tests := []struct {
name string
maxWorkers int
Expand Down

0 comments on commit 73ed007

Please sign in to comment.