From f6ad0867278980b4611fefe21900509fccb66862 Mon Sep 17 00:00:00 2001 From: Paulo Janotti Date: Tue, 7 Jan 2025 12:50:54 -0800 Subject: [PATCH] Multiple test file changes --- exporter/carbonexporter/exporter_test.go | 4 ---- .../integrationtest/no_race_integration_test.go | 4 ---- exporter/prometheusremotewriteexporter/exporter_test.go | 6 ------ 3 files changed, 14 deletions(-) diff --git a/exporter/carbonexporter/exporter_test.go b/exporter/carbonexporter/exporter_test.go index eeeddb1e5a8f..634b3402dd25 100644 --- a/exporter/carbonexporter/exporter_test.go +++ b/exporter/carbonexporter/exporter_test.go @@ -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 diff --git a/exporter/datadogexporter/integrationtest/no_race_integration_test.go b/exporter/datadogexporter/integrationtest/no_race_integration_test.go index a42262337550..ef3717049001 100644 --- a/exporter/datadogexporter/integrationtest/no_race_integration_test.go +++ b/exporter/datadogexporter/integrationtest/no_race_integration_test.go @@ -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)} diff --git a/exporter/prometheusremotewriteexporter/exporter_test.go b/exporter/prometheusremotewriteexporter/exporter_test.go index d35a06ea3840..b53fcb898d3f 100644 --- a/exporter/prometheusremotewriteexporter/exporter_test.go +++ b/exporter/prometheusremotewriteexporter/exporter_test.go @@ -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) {