mirror of https://github.com/scrapy/scrapy.git
Docs update and tiny fixes
This commit is contained in:
parent
88a52198b9
commit
05c2587c6a
|
|
@ -272,6 +272,7 @@ as a fallback value if that key is not provided for a specific feed definition.
|
|||
* ``fields``: falls back to :setting:`FEED_EXPORT_FIELDS`
|
||||
* ``indent``: falls back to :setting:`FEED_EXPORT_INDENT`
|
||||
* ``store_empty``: falls back to :setting:`FEED_STORE_EMPTY`
|
||||
* ``batch_item_count``: falls back to :setting:`FEED_STORAGE_BATCH_ITEM_COUNT`
|
||||
|
||||
.. setting:: FEED_EXPORT_ENCODING
|
||||
|
||||
|
|
|
|||
|
|
@ -1352,7 +1352,7 @@ class BatchDeliveriesTest(FeedExportTestBase):
|
|||
'fields': ['foo', 'bar'],
|
||||
'encoding': 'utf-8',
|
||||
},
|
||||
os.path.join(self._random_temp_filename(), 'csv', self._file_mark): {
|
||||
os.path.join(self._random_temp_filename(), 'jsonlines', self._file_mark): {
|
||||
'format': 'jsonlines',
|
||||
'indent': None,
|
||||
'fields': ['foo', 'bar'],
|
||||
|
|
@ -1423,8 +1423,8 @@ class BatchDeliveriesTest(FeedExportTestBase):
|
|||
[testenv]
|
||||
setenv =
|
||||
AWS_SECRET_ACCESS_KEY = ABCD
|
||||
AWS_ACCESS_KEY_ID = ABCD
|
||||
S3_TEST_BUCKET_NAME = ABCD
|
||||
AWS_ACCESS_KEY_ID = EFGH
|
||||
S3_TEST_BUCKET_NAME = IJKL
|
||||
"""
|
||||
try:
|
||||
import boto3
|
||||
|
|
|
|||
Loading…
Reference in New Issue