Skip to content

Commit

Permalink
fix windows flake
Browse files Browse the repository at this point in the history
  • Loading branch information
guregu committed Jul 18, 2023
1 parent 69c1765 commit 20f9f00
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions trealla/query_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import (
"math/big"
"os"
"reflect"
"runtime"
"sort"
"sync"
"testing"
Expand Down Expand Up @@ -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)
Expand Down

0 comments on commit 20f9f00

Please sign in to comment.