Skip to content

Commit 07cad58

Browse files
committed
Skip test_ftplib on windows
1 parent fe15286 commit 07cad58

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Lib/test/test_ftplib.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,10 @@
2222
from test import support
2323
from test.support import HOST, HOSTv6
2424

25+
import sys
26+
if sys.platform == 'win32':
27+
raise unittest.SkipTest("test_ftplib not working on windows")
28+
2529
TIMEOUT = 3
2630
# the dummy data returned by server over the data channel when
2731
# RETR, LIST, NLST, MLSD commands are issued

0 commit comments

Comments
 (0)