From 07cad5829233bdccfa2dea694c3f8a518b15dd67 Mon Sep 17 00:00:00 2001 From: Noah <33094578+coolreader18@users.noreply.github.com> Date: Mon, 11 Jan 2021 14:37:24 -0600 Subject: [PATCH] Skip test_ftplib on windows --- Lib/test/test_ftplib.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Lib/test/test_ftplib.py b/Lib/test/test_ftplib.py index 65ce3071d..d02695360 100644 --- a/Lib/test/test_ftplib.py +++ b/Lib/test/test_ftplib.py @@ -22,6 +22,10 @@ from unittest import TestCase, skipUnless from test import support from test.support import HOST, HOSTv6 +import sys +if sys.platform == 'win32': + raise unittest.SkipTest("test_ftplib not working on windows") + TIMEOUT = 3 # the dummy data returned by server over the data channel when # RETR, LIST, NLST, MLSD commands are issued