File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -39,6 +39,8 @@ def test_basic(inwd):
39
39
}
40
40
41
41
42
+ @pytest .mark .skipif (sys .platform == 'win32' ,
43
+ reason = "symlinks to dir not supported" )
42
44
def test_symlink_dir (inwd ):
43
45
(inwd .cwd / 'adir' / 'bdirlink' ).mksymlinkto ('../bdir' )
44
46
inwd .add_and_commit ()
@@ -59,6 +61,8 @@ def test_symlink_file(inwd):
59
61
}
60
62
61
63
64
+ @pytest .mark .skipif (sys .platform == 'win32' ,
65
+ reason = "symlinks to dir not supported" )
62
66
def test_symlink_loop (inwd ):
63
67
(inwd .cwd / 'adir' / 'loop' ).mksymlinkto ('../adir' )
64
68
inwd .add_and_commit ()
@@ -67,6 +71,8 @@ def test_symlink_loop(inwd):
67
71
}
68
72
69
73
74
+ @pytest .mark .skipif (sys .platform == 'win32' ,
75
+ reason = "symlinks to dir not supported" )
70
76
def test_symlink_dir_out_of_git (inwd ):
71
77
(inwd .cwd / 'adir' / 'outsidedirlink' ).\
72
78
mksymlinkto (os .path .join (__file__ , '..' ))
You can’t perform that action at this time.
0 commit comments