mirror of https://github.com/scrapy/scrapy.git
TST skip a test in Python 3 because it imports some parts of Twisted which are not ported yet
This commit is contained in:
parent
647eeaea61
commit
abeb8e3a01
|
|
@ -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()
|
||||
|
|
|
|||
Loading…
Reference in New Issue