Skip to content

Commit a47d72c

Browse files
authored
[exporter/datadog] skip flaky test on windows (#34848)
**Description:** Skip flaky test while investigating **Link to tracking Issue:** #34836
1 parent b8ee45e commit a47d72c

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

exporter/datadogexporter/integrationtest/integration_test.go

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ import (
1111
"fmt"
1212
"io"
1313
"net/http"
14+
"runtime"
1415
"strings"
1516
"sync"
1617
"testing"
@@ -529,6 +530,10 @@ func sendLogs(t *testing.T, numLogs int) {
529530
}
530531

531532
func TestIntegrationInternalMetrics(t *testing.T) {
533+
if runtime.GOOS == "windows" {
534+
t.Skip("flaky test on windows https://github.com/open-telemetry/opentelemetry-collector-contrib/issues/34836")
535+
}
536+
532537
// 1. Set up mock Datadog server
533538
seriesRec := &testutil.HTTPRequestRecorderWithChan{Pattern: testutil.MetricV2Endpoint, ReqChan: make(chan []byte, 100)}
534539
tracesRec := &testutil.HTTPRequestRecorderWithChan{Pattern: testutil.TraceEndpoint, ReqChan: make(chan []byte, 100)}

0 commit comments

Comments
 (0)