Skip to content

Commit

Permalink
[chore] Skip TestDefaultBatcher_Split_TimeoutDisabled on Windows (#11848
Browse files Browse the repository at this point in the history
)

Relates to #11847
  • Loading branch information
mx-psi authored Dec 11, 2024
1 parent 574e434 commit 751768f
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions exporter/internal/queue/default_batcher_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ package queue
import (
"context"
"errors"
"runtime"
"testing"
"time"

Expand Down Expand Up @@ -207,6 +208,10 @@ func TestDefaultBatcher_NoSplit_WithTimeout(t *testing.T) {
}

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

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

0 comments on commit 751768f

Please sign in to comment.