Skip to content

Commit a76f4ba

Browse files
authored
Skip APM propagation test on Windows. (#3932)
1 parent 1410d2a commit a76f4ba

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

testing/integration/apm_propagation_test.go

+7
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ import (
1313
"fmt"
1414
"io"
1515
"net/http"
16+
"runtime"
1617
"strings"
1718
"testing"
1819
"text/template"
@@ -56,6 +57,12 @@ func TestAPMConfig(t *testing.T) {
5657
Group: Default,
5758
Stack: &define.Stack{},
5859
})
60+
61+
if runtime.GOOS == "windows" {
62+
// This test hangs indefinitely on Windows. Root cause is TBD.
63+
t.Skip("Flaky test: https://github.com/elastic/ingest-dev/issues/2668")
64+
}
65+
5966
f, err := define.NewFixture(t, define.Version())
6067
require.NoError(t, err)
6168

0 commit comments

Comments
 (0)