We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 53cb64c commit c7736f9Copy full SHA for c7736f9
pkg/blob/blob_test.go
@@ -23,6 +23,7 @@ import (
23
"fmt"
24
"os"
25
"reflect"
26
+ "runtime"
27
"sort"
28
"strings"
29
"testing"
@@ -1508,6 +1509,10 @@ func TestIsSupportedContainerNamePrefix(t *testing.T) {
1508
1509
}
1510
1511
func TestChmodIfPermissionMismatch(t *testing.T) {
1512
+ if runtime.GOOS == "windows" {
1513
+ t.Skip("Skipping test on Windows")
1514
+ }
1515
+
1516
permissionMatchingPath, _ := getWorkDirPath("permissionMatchingPath")
1517
_ = makeDir(permissionMatchingPath)
1518
defer os.RemoveAll(permissionMatchingPath)
0 commit comments