Skip to content

Commit

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

(cherry picked from commit cb62370)
  • Loading branch information
ph authored Jul 14, 2020
1 parent 76aba38 commit 3a59e8b
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 3a59e8b

Please sign in to comment.