1
0
mirror of https://github.com/scrapy/scrapy.git synced 2025-02-24 09:04:16 +00:00

skip ftp tests on py3 for now

This commit is contained in:
Konstantin Lopuhin 2016-01-14 17:31:58 +03:00
parent 4950f5988e
commit f46a9d595d

View File

@ -515,6 +515,8 @@ class FTPTestCase(unittest.TestCase):
if twisted_version < (10, 2, 0):
skip = "Twisted pre 10.2.0 doesn't allow to set home path other than /home"
if six.PY3:
skip = "Twisted missing ftp support for PY3"
def setUp(self):
from twisted.protocols.ftp import FTPRealm, FTPFactory