Skip to content

Commit

Permalink
Multiple test file changes
Browse files Browse the repository at this point in the history
  • Loading branch information
pjanotti committed Jan 7, 2025
1 parent 23146e8 commit f6ad086
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 14 deletions.
4 changes: 0 additions & 4 deletions exporter/carbonexporter/exporter_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -74,10 +74,6 @@ func TestConsumeMetricsWithResourceToTelemetry(t *testing.T) {
}

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

tests := []struct {
name string
md pmetric.Metrics
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,6 @@ import (
)

func TestIntegrationInternalMetrics(t *testing.T) {
if runtime.GOOS == "windows" {
t.Skip("flaky test on windows https://github.com/open-telemetry/opentelemetry-collector-contrib/issues/34836")
}

// 1. Set up mock Datadog server
seriesRec := &testutil.HTTPRequestRecorderWithChan{Pattern: testutil.MetricV2Endpoint, ReqChan: make(chan []byte, 100)}
tracesRec := &testutil.HTTPRequestRecorderWithChan{Pattern: testutil.TraceEndpoint, ReqChan: make(chan []byte, 100)}
Expand Down
6 changes: 0 additions & 6 deletions exporter/prometheusremotewriteexporter/exporter_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -681,13 +681,7 @@ func Test_PushMetrics(t *testing.T) {
name = "WAL"
}
t.Run(name, func(t *testing.T) {
if useWAL {
t.Skip("Flaky test, see https://github.com/open-telemetry/opentelemetry-collector-contrib/issues/9124")
}
for _, tt := range tests {
if useWAL && tt.skipForWAL {
t.Skip("test not supported when using WAL")
}
t.Run(tt.name, func(t *testing.T) {
t.Parallel()
server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
Expand Down

0 comments on commit f6ad086

Please sign in to comment.