We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f5d736c commit a197876Copy full SHA for a197876
receiver/googlecloudspannerreceiver/internal/filter/itemcardinality_test.go
@@ -240,6 +240,9 @@ func TestItemCardinalityFilter_FilterItems(t *testing.T) {
240
}
241
242
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
+ }
246
timestamp := time.Now().UTC()
247
item1 := &Item{SeriesKey: key1, Timestamp: timestamp}
248
item2 := &Item{SeriesKey: key2, Timestamp: timestamp}
0 commit comments