We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 228c985 commit dde3611Copy full SHA for dde3611
1 file changed
repo_tree_test.go
@@ -7,6 +7,7 @@ package git
7
import (
8
"os"
9
"path/filepath"
10
+ "runtime"
11
"testing"
12
13
"github.com/stretchr/testify/assert"
@@ -54,6 +55,10 @@ func TestUnescapeChars(t *testing.T) {
54
55
}
56
57
func TestRepository_LsTree(t *testing.T) {
58
+ if runtime.GOOS == "windows" {
59
+ t.Skip(`Windows does not allow '"' in filenames`)
60
+ }
61
+
62
path := tempPath()
63
defer os.RemoveAll(path)
64
0 commit comments