Skip to content

Commit a197876

Browse files
committed
Skip flaky tests on Windows os for Cloud Spanner receiver
1 parent f5d736c commit a197876

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

receiver/googlecloudspannerreceiver/internal/filter/itemcardinality_test.go

+3
Original file line numberDiff line numberDiff line change
@@ -240,6 +240,9 @@ func TestItemCardinalityFilter_FilterItems(t *testing.T) {
240240
}
241241

242242
func TestItemCardinalityFilter_IncludeItem(t *testing.T) {
243+
if runtime.GOOS == "windows" {
244+
t.Skip("Skipping test on Windows due to https://github.com/open-telemetry/opentelemetry-collector-contrib/issues/32397")
245+
}
243246
timestamp := time.Now().UTC()
244247
item1 := &Item{SeriesKey: key1, Timestamp: timestamp}
245248
item2 := &Item{SeriesKey: key2, Timestamp: timestamp}

0 commit comments

Comments
 (0)