TST skip a test in Python 3 because it imports some parts of Twisted which are not ported yet

This commit is contained in:
Mikhail Korobov 2015-04-15 03:27:11 +05:00
parent 647eeaea61
commit abeb8e3a01
1 changed files with 3 additions and 0 deletions

View File

@ -4,6 +4,7 @@ import csv
from io import BytesIO
import tempfile
import shutil
import six
from six.moves.urllib.parse import urlparse
from zope.interface.verify import verifyObject
@ -118,6 +119,8 @@ class StdoutFeedStorageTest(unittest.TestCase):
class FeedExportTest(unittest.TestCase):
skip = not six.PY2
class MyItem(scrapy.Item):
foo = scrapy.Field()
egg = scrapy.Field()