Skip to content

Commit

Permalink
skip TestCompatibility for WIndows
Browse files Browse the repository at this point in the history
  • Loading branch information
yimoucao committed Jun 1, 2024
1 parent 2507c59 commit ccdfcca
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions get_e2e_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import (
"fmt"
"os"
"path/filepath"
"runtime"
"strings"
"testing"

Expand Down Expand Up @@ -346,6 +347,9 @@ var (
)

func TestCompatibility(t *testing.T) {
if runtime.GOOS == "windows" {
t.Skip() // bingo for Windows won't be compatible with past versions
}
t.Parallel()

dirs, err := filepath.Glob("testdata/testproject*")
Expand Down

0 comments on commit ccdfcca

Please sign in to comment.