Skip to content

Commit

Permalink
tests: skip windows
Browse files Browse the repository at this point in the history
  • Loading branch information
ldez committed Jun 23, 2022
1 parent 5ddf590 commit 983d889
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions mocktail_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import (
"os"
"os/exec"
"path/filepath"
"runtime"
"testing"

"github.com/hexops/gotextdiff"
Expand All @@ -15,6 +16,10 @@ import (
)

func TestMocktail(t *testing.T) {
if runtime.GOOS == "windows" {
t.Skip(runtime.GOOS)
}

testRoot := "./testdata/src"

dir, err := os.ReadDir(testRoot)
Expand Down

0 comments on commit 983d889

Please sign in to comment.