Skip to content

Commit

Permalink
[Heartbeat] Skip flakey timer queue test (#26592)
Browse files Browse the repository at this point in the history
Apparently this is causing flakey builds on all platforms now
  • Loading branch information
andrewvc authored Jun 30, 2021
1 parent f364c07 commit 8ca57d3
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions heartbeat/scheduler/timerqueue/queue_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ package timerqueue
import (
"context"
"math/rand"
"runtime"
"sort"
"testing"
"time"
Expand All @@ -29,9 +28,7 @@ import (
)

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

0 comments on commit 8ca57d3

Please sign in to comment.