Skip to content

Commit

Permalink
skip unixy tests on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
guregu committed Jul 18, 2023
1 parent 20f9f00 commit 17a9ed4
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions trealla/query_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -312,6 +312,10 @@ func TestPreopen(t *testing.T) {
})

t.Run("WithMapDir", func(t *testing.T) {
if runtime.GOOS == "windows" {
t.Skip("skipping unixy test")
}

q, err := pl.QueryOnce(ctx, `directory_files("/foo", X)`)
if err != nil {
t.Fatal(err)
Expand Down

0 comments on commit 17a9ed4

Please sign in to comment.