helpers: Skip TestGetRealPath on Windows when not in CI

`os.Symlink` needs administrator rights on Windows,
and this seems to be the simplest fix while still getting the tests run on Appveyor.

Fixes #2476
This commit is contained in:
Bjørn Erik Pedersen 2016-09-18 22:04:32 +02:00
parent 98c12b7b3d
commit bacc1706cb

View file

@ -146,6 +146,10 @@ func TestGetRelativePath(t *testing.T) {
}
func TestGetRealPath(t *testing.T) {
if runtime.GOOS == "windows" && os.Getenv("CI") == "" {
t.Skip("Skip TestGetRealPath as os.Symlink needs administrator rights on Windows")
}
d1, err := ioutil.TempDir("", "d1")
defer os.Remove(d1)
fs := afero.NewOsFs()