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

botocore is not supported on debian jessie

This commit is contained in:
Victor Torres 2019-02-13 19:53:10 -02:00
parent dc0b643832
commit ea8be627d1
2 changed files with 6 additions and 2 deletions

View File

@ -18,7 +18,6 @@ from tests import mock
from tests.mockserver import MockServer
from w3lib.url import path_to_file_uri
import botocore.client
import scrapy
from scrapy.exporters import CsvItemExporter
from scrapy.extensions.feedexport import (
@ -239,6 +238,9 @@ class S3FeedStorageTest(unittest.TestCase):
@defer.inlineCallbacks
def test_store_botocore_without_acl(self):
if os.getenv('TOX_ENV_NAME') == 'jessie':
raise unittest.SkipTest('botocore is not supported on jessie')
storage = S3FeedStorage(
's3://mybucket/export.csv',
'access_key',
@ -254,6 +256,9 @@ class S3FeedStorageTest(unittest.TestCase):
@defer.inlineCallbacks
def test_store_botocore_with_acl(self):
if os.getenv('TOX_ENV_NAME') == 'jessie':
raise unittest.SkipTest('botocore is not supported on jessie')
storage = S3FeedStorage(
's3://mybucket/export.csv',
'access_key',

View File

@ -47,7 +47,6 @@ deps =
lxml==3.4.0
Twisted==14.0.2
boto==2.34.0
botocore==0.62
Pillow==2.6.1
cssselect==0.9.1
zope.interface==4.1.1