Skip to content

Commit

Permalink
Skip flaky TestActions on Windows (elastic#22520)
Browse files Browse the repository at this point in the history
  • Loading branch information
Steffen Siering authored Nov 10, 2020
1 parent 9c41b67 commit e52ef80
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions auditbeat/module/file_integrity/metricset_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ import (
"io/ioutil"
"os"
"path/filepath"
"runtime"
"testing"
"time"

Expand Down Expand Up @@ -63,6 +64,10 @@ func TestData(t *testing.T) {
func TestActions(t *testing.T) {
defer abtest.SetupDataDir(t)()

if runtime.GOOS == "windows" {
t.Skip("Skipping flaky test: https://github.com/elastic/beats/issues/22518")
}

bucket, err := datastore.OpenBucket(bucketName)
if err != nil {
t.Fatal(err)
Expand Down

0 comments on commit e52ef80

Please sign in to comment.