From 20f9f008507ef12d8d4e4e13dd4d01935eb4d4d2 Mon Sep 17 00:00:00 2001 From: Greg Date: Wed, 19 Jul 2023 03:56:57 +0900 Subject: [PATCH] fix windows flake --- trealla/query_test.go | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/trealla/query_test.go b/trealla/query_test.go index f084d9d..13e7017 100644 --- a/trealla/query_test.go +++ b/trealla/query_test.go @@ -9,6 +9,7 @@ import ( "math/big" "os" "reflect" + "runtime" "sort" "sync" "testing" @@ -289,6 +290,10 @@ func TestPreopen(t *testing.T) { ctx := context.Background() t.Run("WithPreopenDir", func(t *testing.T) { + if runtime.GOOS == "windows" { + t.Skip("skipping unixy test") + } + q, err := pl.QueryOnce(ctx, `directory_files("/", X)`) if err != nil { t.Fatal(err)