Skip to content

Commit abeb8e3

Browse files
committed
TST skip a test in Python 3 because it imports some parts of Twisted which are not ported yet
1 parent 647eeae commit abeb8e3

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

tests/test_contrib_feedexport.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
from io import BytesIO
55
import tempfile
66
import shutil
7+
import six
78
from six.moves.urllib.parse import urlparse
89

910
from zope.interface.verify import verifyObject
@@ -118,6 +119,8 @@ def test_store(self):
118119

119120
class FeedExportTest(unittest.TestCase):
120121

122+
skip = not six.PY2
123+
121124
class MyItem(scrapy.Item):
122125
foo = scrapy.Field()
123126
egg = scrapy.Field()

0 commit comments

Comments
 (0)