Skip to content

Commit

Permalink
Skip failing Windows tests (#33837)
Browse files Browse the repository at this point in the history
Skip failing Windows tests, see #33836
  • Loading branch information
pjanotti authored Jul 2, 2024
1 parent 38f97b6 commit dfd127b
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions connector/servicegraphconnector/connector_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ package servicegraphconnector
import (
"context"
"crypto/rand"
"runtime"
"sync"
"testing"
"time"
Expand Down Expand Up @@ -487,6 +488,10 @@ func TestExtraDimensionsLabels(t *testing.T) {
}

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

virtualNodeDimensions := []string{"peer.service", "db.system", "messaging.system"}
cfg := &Config{
Dimensions: virtualNodeDimensions,
Expand Down Expand Up @@ -531,6 +536,10 @@ func TestVirtualNodeServerLabels(t *testing.T) {
}

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

virtualNodeDimensions := []string{"peer.service", "db.system", "messaging.system"}
cfg := &Config{
Dimensions: virtualNodeDimensions,
Expand Down

0 comments on commit dfd127b

Please sign in to comment.