Skip to content

Commit 7c80cd8

Browse files
committed
Fix a final test with PyPy on Windows
1 parent 34196b1 commit 7c80cd8

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

tests/test_paths_stdlib.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -456,6 +456,10 @@ def my_mkdir(path, mode=0o777):
456456
assert (p.exists())
457457

458458

459+
@pytest.mark.skipif(
460+
PYPY and sys.platform == "win32",
461+
reason="symlink() is not implemented for PyPy on Windows",
462+
)
459463
def test_symlink_to(BASE):
460464
P = PathPlus(BASE)
461465
target = P / "fileA"

0 commit comments

Comments
 (0)