File tree Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ package exporterhelper // import "go.opentelemetry.io/collector/exporter/exporte
6
6
import (
7
7
"context"
8
8
"errors"
9
+ "runtime"
9
10
"sync"
10
11
"testing"
11
12
"time"
@@ -19,6 +20,9 @@ import (
19
20
)
20
21
21
22
func TestBatchSender_Merge (t * testing.T ) {
23
+ if runtime .GOOS == "windows" {
24
+ t .Skip ("skipping flaky test on Windows, see https://github.com/open-telemetry/opentelemetry-collector/issues/10758" )
25
+ }
22
26
cfg := exporterbatcher .NewDefaultConfig ()
23
27
cfg .MinSizeItems = 10
24
28
cfg .FlushTimeout = 100 * time .Millisecond
@@ -270,7 +274,9 @@ func TestBatchSender_PostShutdown(t *testing.T) {
270
274
}
271
275
272
276
func TestBatchSender_ConcurrencyLimitReached (t * testing.T ) {
273
-
277
+ if runtime .GOOS == "windows" {
278
+ t .Skip ("skipping flaky test on Windows, see https://github.com/open-telemetry/opentelemetry-collector/issues/10810" )
279
+ }
274
280
tests := []struct {
275
281
name string
276
282
batcherCfg exporterbatcher.Config
@@ -655,6 +661,9 @@ func TestBatchSenderTimerResetNoConflict(t *testing.T) {
655
661
}
656
662
657
663
func TestBatchSenderTimerFlush (t * testing.T ) {
664
+ if runtime .GOOS == "windows" {
665
+ t .Skip ("skipping flaky test on Windows, see https://github.com/open-telemetry/opentelemetry-collector/issues/10802" )
666
+ }
658
667
bCfg := exporterbatcher .NewDefaultConfig ()
659
668
bCfg .MinSizeItems = 8
660
669
bCfg .FlushTimeout = 100 * time .Millisecond
You can’t perform that action at this time.
0 commit comments