Skip to content

Commit 8ca57d3

Browse files
authored
[Heartbeat] Skip flakey timer queue test (#26592)
Apparently this is causing flakey builds on all platforms now
1 parent f364c07 commit 8ca57d3

1 file changed

Lines changed: 1 addition & 4 deletions

File tree

heartbeat/scheduler/timerqueue/queue_test.go

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ package timerqueue
2020
import (
2121
"context"
2222
"math/rand"
23-
"runtime"
2423
"sort"
2524
"testing"
2625
"time"
@@ -29,9 +28,7 @@ import (
2928
)
3029

3130
func TestQueueRunsInOrder(t *testing.T) {
32-
if runtime.GOOS == "windows" {
33-
t.Skip("flaky test on windows: https://github.com/elastic/beats/issues/26205")
34-
}
31+
t.Skip("flaky test on windows: https://github.com/elastic/beats/issues/26205")
3532
// Bugs can show up only occasionally
3633
for i := 0; i < 100; i++ {
3734
testQueueRunsInOrderOnce(t)

0 commit comments

Comments
 (0)