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
1 changed files with 2 additions and 0 deletions

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