Skip to content

Commit

Permalink
[exporter/datadog] skip flaky test on windows (open-telemetry#34848)
Browse files Browse the repository at this point in the history
**Description:**
Skip flaky test while investigating

**Link to tracking Issue:** 

open-telemetry#34836
  • Loading branch information
songy23 authored and f7o committed Sep 12, 2024
1 parent f21ab46 commit 8330ff8
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions exporter/datadogexporter/integrationtest/integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ import (
"fmt"
"io"
"net/http"
"runtime"
"strings"
"sync"
"testing"
Expand Down Expand Up @@ -529,6 +530,10 @@ func sendLogs(t *testing.T, numLogs int) {
}

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

0 comments on commit 8330ff8

Please sign in to comment.