Docs update and tiny fixes

This commit is contained in:
BroodingKangaroo 2020-06-28 09:45:45 +03:00
parent 88a52198b9
commit 05c2587c6a
2 changed files with 4 additions and 3 deletions

View File

@ -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

View File

@ -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