test(inputs.influxdb_v2_listener): Skip on Windows after hang (#14551)
This commit is contained in:
parent
5dee68b93e
commit
193ad373aa
|
|
@ -429,7 +429,7 @@ func TestWriteGzippedData(t *testing.T) {
|
|||
|
||||
// writes 25,000 metrics to the listener with 10 different writers
|
||||
func TestWriteHighTraffic(t *testing.T) {
|
||||
if runtime.GOOS == "darwin" {
|
||||
if runtime.GOOS == "darwin" || runtime.GOOS == "windows" {
|
||||
t.Skip("Skipping due to hang on darwin")
|
||||
}
|
||||
listener := newTestListener()
|
||||
|
|
|
|||
Loading…
Reference in New Issue