Skip to content

Commit

Permalink
Skip test that fails in osx
Browse files Browse the repository at this point in the history
  • Loading branch information
jsoriano committed May 29, 2020
1 parent 2c6cbcb commit 3bbb8f9
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions x-pack/auditbeat/module/system/package/package_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ package pkg

import (
"path/filepath"
"runtime"
"testing"

"github.com/stretchr/testify/assert"
Expand All @@ -19,6 +20,10 @@ import (
)

func TestData(t *testing.T) {
if runtime.GOOS == "darwin" {
t.Skip("FIXME")
}

defer abtest.SetupDataDir(t)()

f := mbtest.NewReportingMetricSetV2(t, getConfig())
Expand Down

0 comments on commit 3bbb8f9

Please sign in to comment.