Skip to content

Commit

Permalink
Skip APM propagation test on Windows. (#3932)
Browse files Browse the repository at this point in the history
  • Loading branch information
cmacknz authored Dec 20, 2023
1 parent 1410d2a commit a76f4ba
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions testing/integration/apm_propagation_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ import (
"fmt"
"io"
"net/http"
"runtime"
"strings"
"testing"
"text/template"
Expand Down Expand Up @@ -56,6 +57,12 @@ func TestAPMConfig(t *testing.T) {
Group: Default,
Stack: &define.Stack{},
})

if runtime.GOOS == "windows" {
// This test hangs indefinitely on Windows. Root cause is TBD.
t.Skip("Flaky test: https://github.com/elastic/ingest-dev/issues/2668")
}

f, err := define.NewFixture(t, define.Version())
require.NoError(t, err)

Expand Down

0 comments on commit a76f4ba

Please sign in to comment.