Skip to content

Commit

Permalink
[Elastic Agent] Skip windows TestActionStore failure (elastic#19920)
Browse files Browse the repository at this point in the history
See elastic#19919

(cherry picked from commit cb62370)
  • Loading branch information
ph committed Jul 14, 2020
1 parent 826deaf commit e88c4fd
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import (
"io/ioutil"
"os"
"path/filepath"
"runtime"
"testing"

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

func TestActionStore(t *testing.T) {
if runtime.GOOS == "windows" {
t.Skip("Skipping on windows see https://github.com/elastic/beats/issues/19919")
}

log, _ := logger.New("action_store")
withFile := func(fn func(t *testing.T, file string)) func(*testing.T) {
return func(t *testing.T) {
Expand Down

0 comments on commit e88c4fd

Please sign in to comment.