diff --git a/store/streaming/streaming_test.go b/store/streaming/streaming_test.go index 62ca55e63e..14cc028e5d 100644 --- a/store/streaming/streaming_test.go +++ b/store/streaming/streaming_test.go @@ -4,6 +4,7 @@ import ( "context" "fmt" "os" + "runtime" "testing" "time" @@ -38,6 +39,10 @@ type PluginTestSuite struct { } func (s *PluginTestSuite) SetupTest() { + if runtime.GOOS != "linux" { + s.T().Skip("only run on linux") + } + path, err := os.Getwd() if err != nil { s.T().Fail()