mirror of
https://github.com/pacnpal/django-anymail.git
synced 2025-12-20 03:41:05 -05:00
Flake8 clean
This commit is contained in:
@@ -1 +1,2 @@
|
|||||||
from ._version import __version__, VERSION
|
# Expose package version at root of package
|
||||||
|
from ._version import __version__, VERSION # NOQA: F401
|
||||||
|
|||||||
@@ -282,7 +282,7 @@ class BasePayload(object):
|
|||||||
|
|
||||||
def validate_not_bare_string(self, attr, value):
|
def validate_not_bare_string(self, attr, value):
|
||||||
"""EmailMessage to, cc, bcc, and reply_to are specced to be lists of strings.
|
"""EmailMessage to, cc, bcc, and reply_to are specced to be lists of strings.
|
||||||
|
|
||||||
This catches the common error where a single string is used instead.
|
This catches the common error where a single string is used instead.
|
||||||
(See also checks in EmailMessage.__init__.)
|
(See also checks in EmailMessage.__init__.)
|
||||||
"""
|
"""
|
||||||
|
|||||||
@@ -214,7 +214,7 @@ class MandrillPayload(RequestsPayload):
|
|||||||
{'rcpt': rcpt, 'values': recipient_metadata[rcpt]}
|
{'rcpt': rcpt, 'values': recipient_metadata[rcpt]}
|
||||||
for rcpt in sorted(recipient_metadata.keys())]
|
for rcpt in sorted(recipient_metadata.keys())]
|
||||||
# Merge esp_extra with payload data: shallow merge within ['message'] and top-level keys
|
# Merge esp_extra with payload data: shallow merge within ['message'] and top-level keys
|
||||||
self.data.update({k:v for k,v in esp_extra.items() if k != 'message'})
|
self.data.update({k: v for k, v in esp_extra.items() if k != 'message'})
|
||||||
try:
|
try:
|
||||||
self.data['message'].update(esp_extra['message'])
|
self.data['message'].update(esp_extra['message'])
|
||||||
except KeyError:
|
except KeyError:
|
||||||
@@ -311,4 +311,5 @@ class MandrillPayload(RequestsPayload):
|
|||||||
setter.__name__ = setter_name
|
setter.__name__ = setter_name
|
||||||
return setter
|
return setter
|
||||||
|
|
||||||
|
|
||||||
MandrillPayload.define_message_attr_setters()
|
MandrillPayload.define_message_attr_setters()
|
||||||
|
|||||||
@@ -344,4 +344,3 @@ class SendGridPayload(RequestsPayload):
|
|||||||
"or use 'anymail.backends.sendgrid_v2.EmailBackend' for the old API."
|
"or use 'anymail.backends.sendgrid_v2.EmailBackend' for the old API."
|
||||||
)
|
)
|
||||||
update_deep(self.data, extra)
|
update_deep(self.data, extra)
|
||||||
|
|
||||||
|
|||||||
@@ -120,4 +120,3 @@ class SendGridTrackingWebhookView(SendGridBaseWebhookView):
|
|||||||
'url_offset', # click tracking
|
'url_offset', # click tracking
|
||||||
'useragent', # click/open tracking
|
'useragent', # click/open tracking
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
87
docs/conf.py
87
docs/conf.py
@@ -11,7 +11,8 @@
|
|||||||
# All configuration values have a default; values that are commented out
|
# All configuration values have a default; values that are commented out
|
||||||
# serve to show the default.
|
# serve to show the default.
|
||||||
|
|
||||||
import sys, os
|
import os
|
||||||
|
import sys
|
||||||
on_rtd = os.environ.get('READTHEDOCS', None) == 'True'
|
on_rtd = os.environ.get('READTHEDOCS', None) == 'True'
|
||||||
|
|
||||||
# If extensions (or modules to document with autodoc) are in another directory,
|
# If extensions (or modules to document with autodoc) are in another directory,
|
||||||
@@ -43,7 +44,7 @@ templates_path = ['_templates']
|
|||||||
source_suffix = '.rst'
|
source_suffix = '.rst'
|
||||||
|
|
||||||
# The encoding of source files.
|
# The encoding of source files.
|
||||||
#source_encoding = 'utf-8-sig'
|
# source_encoding = 'utf-8-sig'
|
||||||
|
|
||||||
# The master toctree document.
|
# The master toctree document.
|
||||||
master_doc = 'index'
|
master_doc = 'index'
|
||||||
@@ -64,13 +65,13 @@ release = __version__
|
|||||||
|
|
||||||
# The language for content autogenerated by Sphinx. Refer to documentation
|
# The language for content autogenerated by Sphinx. Refer to documentation
|
||||||
# for a list of supported languages.
|
# for a list of supported languages.
|
||||||
#language = None
|
# language = None
|
||||||
|
|
||||||
# There are two options for replacing |today|: either, you set today to some
|
# There are two options for replacing |today|: either, you set today to some
|
||||||
# non-false value, then it is used:
|
# non-false value, then it is used:
|
||||||
#today = ''
|
# today = ''
|
||||||
# Else, today_fmt is used as the format for a strftime call.
|
# Else, today_fmt is used as the format for a strftime call.
|
||||||
#today_fmt = '%B %d, %Y'
|
# today_fmt = '%B %d, %Y'
|
||||||
|
|
||||||
# List of patterns, relative to source directory, that match files and
|
# List of patterns, relative to source directory, that match files and
|
||||||
# directories to ignore when looking for source files.
|
# directories to ignore when looking for source files.
|
||||||
@@ -80,21 +81,21 @@ exclude_patterns = ['_build']
|
|||||||
default_role = "py:obj"
|
default_role = "py:obj"
|
||||||
|
|
||||||
# If true, '()' will be appended to :func: etc. cross-reference text.
|
# If true, '()' will be appended to :func: etc. cross-reference text.
|
||||||
#add_function_parentheses = True
|
# add_function_parentheses = True
|
||||||
|
|
||||||
# If true, the current module name will be prepended to all description
|
# If true, the current module name will be prepended to all description
|
||||||
# unit titles (such as .. function::).
|
# unit titles (such as .. function::).
|
||||||
#add_module_names = True
|
# add_module_names = True
|
||||||
|
|
||||||
# If true, sectionauthor and moduleauthor directives will be shown in the
|
# If true, sectionauthor and moduleauthor directives will be shown in the
|
||||||
# output. They are ignored by default.
|
# output. They are ignored by default.
|
||||||
#show_authors = False
|
# show_authors = False
|
||||||
|
|
||||||
# The name of the Pygments (syntax highlighting) style to use.
|
# The name of the Pygments (syntax highlighting) style to use.
|
||||||
pygments_style = 'sphinx'
|
pygments_style = 'sphinx'
|
||||||
|
|
||||||
# A list of ignored prefixes for module index sorting.
|
# A list of ignored prefixes for module index sorting.
|
||||||
#modindex_common_prefix = []
|
# modindex_common_prefix = []
|
||||||
|
|
||||||
|
|
||||||
# -- Options for HTML output ---------------------------------------------------
|
# -- Options for HTML output ---------------------------------------------------
|
||||||
@@ -110,26 +111,26 @@ if not on_rtd: # only import and set the theme if we're building docs locally
|
|||||||
# Theme options are theme-specific and customize the look and feel of a theme
|
# Theme options are theme-specific and customize the look and feel of a theme
|
||||||
# further. For a list of options available for each theme, see the
|
# further. For a list of options available for each theme, see the
|
||||||
# documentation.
|
# documentation.
|
||||||
#html_theme_options = {}
|
# html_theme_options = {}
|
||||||
|
|
||||||
# Add any paths that contain custom themes here, relative to this directory.
|
# Add any paths that contain custom themes here, relative to this directory.
|
||||||
#html_theme_path = []
|
# html_theme_path = []
|
||||||
|
|
||||||
# The name for this set of Sphinx documents. If None, it defaults to
|
# The name for this set of Sphinx documents. If None, it defaults to
|
||||||
# "<project> v<release> documentation".
|
# "<project> v<release> documentation".
|
||||||
#html_title = None
|
# html_title = None
|
||||||
|
|
||||||
# A shorter title for the navigation bar. Default is the same as html_title.
|
# A shorter title for the navigation bar. Default is the same as html_title.
|
||||||
#html_short_title = None
|
# html_short_title = None
|
||||||
|
|
||||||
# The name of an image file (relative to this directory) to place at the top
|
# The name of an image file (relative to this directory) to place at the top
|
||||||
# of the sidebar.
|
# of the sidebar.
|
||||||
#html_logo = None
|
# html_logo = None
|
||||||
|
|
||||||
# The name of an image file (within the static path) to use as favicon of the
|
# The name of an image file (within the static path) to use as favicon of the
|
||||||
# docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32
|
# docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32
|
||||||
# pixels large.
|
# pixels large.
|
||||||
#html_favicon = None
|
# html_favicon = None
|
||||||
|
|
||||||
# Add any paths that contain custom static files (such as style sheets) here,
|
# Add any paths that contain custom static files (such as style sheets) here,
|
||||||
# relative to this directory. They are copied after the builtin static files,
|
# relative to this directory. They are copied after the builtin static files,
|
||||||
@@ -138,44 +139,44 @@ html_static_path = ['_static']
|
|||||||
|
|
||||||
# If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
|
# If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
|
||||||
# using the given strftime format.
|
# using the given strftime format.
|
||||||
#html_last_updated_fmt = '%b %d, %Y'
|
# html_last_updated_fmt = '%b %d, %Y'
|
||||||
|
|
||||||
# If true, SmartyPants will be used to convert quotes and dashes to
|
# If true, SmartyPants will be used to convert quotes and dashes to
|
||||||
# typographically correct entities.
|
# typographically correct entities.
|
||||||
#html_use_smartypants = True
|
# html_use_smartypants = True
|
||||||
|
|
||||||
# Custom sidebar templates, maps document names to template names.
|
# Custom sidebar templates, maps document names to template names.
|
||||||
#html_sidebars = {}
|
# html_sidebars = {}
|
||||||
|
|
||||||
# Additional templates that should be rendered to pages, maps page names to
|
# Additional templates that should be rendered to pages, maps page names to
|
||||||
# template names.
|
# template names.
|
||||||
#html_additional_pages = {}
|
# html_additional_pages = {}
|
||||||
|
|
||||||
# If false, no module index is generated.
|
# If false, no module index is generated.
|
||||||
#html_domain_indices = True
|
# html_domain_indices = True
|
||||||
|
|
||||||
# If false, no index is generated.
|
# If false, no index is generated.
|
||||||
#html_use_index = True
|
# html_use_index = True
|
||||||
|
|
||||||
# If true, the index is split into individual pages for each letter.
|
# If true, the index is split into individual pages for each letter.
|
||||||
#html_split_index = False
|
# html_split_index = False
|
||||||
|
|
||||||
# If true, links to the reST sources are added to the pages.
|
# If true, links to the reST sources are added to the pages.
|
||||||
#html_show_sourcelink = True
|
# html_show_sourcelink = True
|
||||||
|
|
||||||
# If true, "Created using Sphinx" is shown in the HTML footer. Default is True.
|
# If true, "Created using Sphinx" is shown in the HTML footer. Default is True.
|
||||||
#html_show_sphinx = True
|
# html_show_sphinx = True
|
||||||
|
|
||||||
# If true, "(C) Copyright ..." is shown in the HTML footer. Default is True.
|
# If true, "(C) Copyright ..." is shown in the HTML footer. Default is True.
|
||||||
#html_show_copyright = True
|
# html_show_copyright = True
|
||||||
|
|
||||||
# If true, an OpenSearch description file will be output, and all pages will
|
# If true, an OpenSearch description file will be output, and all pages will
|
||||||
# contain a <link> tag referring to it. The value of this option must be the
|
# contain a <link> tag referring to it. The value of this option must be the
|
||||||
# base URL from which the finished HTML is served.
|
# base URL from which the finished HTML is served.
|
||||||
#html_use_opensearch = ''
|
# html_use_opensearch = ''
|
||||||
|
|
||||||
# This is the file name suffix for HTML files (e.g. ".xhtml").
|
# This is the file name suffix for HTML files (e.g. ".xhtml").
|
||||||
#html_file_suffix = None
|
# html_file_suffix = None
|
||||||
|
|
||||||
# Output file base name for HTML help builder.
|
# Output file base name for HTML help builder.
|
||||||
htmlhelp_basename = 'Anymaildoc'
|
htmlhelp_basename = 'Anymaildoc'
|
||||||
@@ -184,14 +185,14 @@ htmlhelp_basename = 'Anymaildoc'
|
|||||||
# -- Options for LaTeX output --------------------------------------------------
|
# -- Options for LaTeX output --------------------------------------------------
|
||||||
|
|
||||||
latex_elements = {
|
latex_elements = {
|
||||||
# The paper size ('letterpaper' or 'a4paper').
|
# The paper size ('letterpaper' or 'a4paper').
|
||||||
#'papersize': 'letterpaper',
|
# 'papersize': 'letterpaper',
|
||||||
|
|
||||||
# The font size ('10pt', '11pt' or '12pt').
|
# The font size ('10pt', '11pt' or '12pt').
|
||||||
#'pointsize': '10pt',
|
# 'pointsize': '10pt',
|
||||||
|
|
||||||
# Additional stuff for the LaTeX preamble.
|
# Additional stuff for the LaTeX preamble.
|
||||||
#'preamble': '',
|
# 'preamble': '',
|
||||||
}
|
}
|
||||||
|
|
||||||
# Grouping the document tree into LaTeX files. List of tuples
|
# Grouping the document tree into LaTeX files. List of tuples
|
||||||
@@ -203,23 +204,23 @@ latex_documents = [
|
|||||||
|
|
||||||
# The name of an image file (relative to this directory) to place at the top of
|
# The name of an image file (relative to this directory) to place at the top of
|
||||||
# the title page.
|
# the title page.
|
||||||
#latex_logo = None
|
# latex_logo = None
|
||||||
|
|
||||||
# For "manual" documents, if this is true, then toplevel headings are parts,
|
# For "manual" documents, if this is true, then toplevel headings are parts,
|
||||||
# not chapters.
|
# not chapters.
|
||||||
#latex_use_parts = False
|
# latex_use_parts = False
|
||||||
|
|
||||||
# If true, show page references after internal links.
|
# If true, show page references after internal links.
|
||||||
#latex_show_pagerefs = False
|
# latex_show_pagerefs = False
|
||||||
|
|
||||||
# If true, show URL addresses after external links.
|
# If true, show URL addresses after external links.
|
||||||
#latex_show_urls = False
|
# latex_show_urls = False
|
||||||
|
|
||||||
# Documents to append as an appendix to all manuals.
|
# Documents to append as an appendix to all manuals.
|
||||||
#latex_appendices = []
|
# latex_appendices = []
|
||||||
|
|
||||||
# If false, no module index is generated.
|
# If false, no module index is generated.
|
||||||
#latex_domain_indices = True
|
# latex_domain_indices = True
|
||||||
|
|
||||||
|
|
||||||
# -- Options for manual page output --------------------------------------------
|
# -- Options for manual page output --------------------------------------------
|
||||||
@@ -232,7 +233,7 @@ man_pages = [
|
|||||||
]
|
]
|
||||||
|
|
||||||
# If true, show URL addresses after external links.
|
# If true, show URL addresses after external links.
|
||||||
#man_show_urls = False
|
# man_show_urls = False
|
||||||
|
|
||||||
|
|
||||||
# -- Options for Texinfo output ------------------------------------------------
|
# -- Options for Texinfo output ------------------------------------------------
|
||||||
@@ -247,13 +248,13 @@ texinfo_documents = [
|
|||||||
]
|
]
|
||||||
|
|
||||||
# Documents to append as an appendix to all manuals.
|
# Documents to append as an appendix to all manuals.
|
||||||
#texinfo_appendices = []
|
# texinfo_appendices = []
|
||||||
|
|
||||||
# If false, no module index is generated.
|
# If false, no module index is generated.
|
||||||
#texinfo_domain_indices = True
|
# texinfo_domain_indices = True
|
||||||
|
|
||||||
# How to display URL addresses: 'footnote', 'no', or 'inline'.
|
# How to display URL addresses: 'footnote', 'no', or 'inline'.
|
||||||
#texinfo_show_urls = 'footnote'
|
# texinfo_show_urls = 'footnote'
|
||||||
|
|
||||||
|
|
||||||
# -- Options for Intersphinx ------------------------------------------------
|
# -- Options for Intersphinx ------------------------------------------------
|
||||||
|
|||||||
2
setup.py
2
setup.py
@@ -20,9 +20,11 @@ def long_description_from_readme(rst):
|
|||||||
release, rst) # (?<=...) is "positive lookbehind": must be there, but won't get replaced
|
release, rst) # (?<=...) is "positive lookbehind": must be there, but won't get replaced
|
||||||
return rst
|
return rst
|
||||||
|
|
||||||
|
|
||||||
with open('README.rst') as f:
|
with open('README.rst') as f:
|
||||||
long_description = long_description_from_readme(f.read())
|
long_description = long_description_from_readme(f.read())
|
||||||
|
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name="django-anymail",
|
name="django-anymail",
|
||||||
version=__version__,
|
version=__version__,
|
||||||
|
|||||||
@@ -315,4 +315,3 @@ class CatchCommonErrorsTests(TestBackendTestCase):
|
|||||||
self.message.reply_to = ugettext_lazy("single-reply-to@example.com")
|
self.message.reply_to = ugettext_lazy("single-reply-to@example.com")
|
||||||
with self.assertRaisesMessage(TypeError, '"reply_to" attribute must be a list or other iterable'):
|
with self.assertRaisesMessage(TypeError, '"reply_to" attribute must be a list or other iterable'):
|
||||||
self.message.send()
|
self.message.send()
|
||||||
|
|
||||||
|
|||||||
@@ -526,4 +526,3 @@ class MailgunBackendDeprecationTests(MailgunBackendMockAPITestCase):
|
|||||||
with self.assertWarnsRegex(DeprecationWarning,
|
with self.assertWarnsRegex(DeprecationWarning,
|
||||||
r'anymail\.backends\.mailgun\.EmailBackend'):
|
r'anymail\.backends\.mailgun\.EmailBackend'):
|
||||||
self.message.send()
|
self.message.send()
|
||||||
|
|
||||||
|
|||||||
@@ -416,7 +416,7 @@ class MandrillBackendAnymailFeatureTests(MandrillBackendMockAPITestCase):
|
|||||||
# Anymail expands simple python dicts into the more-verbose
|
# Anymail expands simple python dicts into the more-verbose
|
||||||
# rcpt/values lists the Mandrill API uses
|
# rcpt/values lists the Mandrill API uses
|
||||||
"customer@example.com": {'cust_id': "67890", 'order_id': "54321"},
|
"customer@example.com": {'cust_id': "67890", 'order_id': "54321"},
|
||||||
"guest@example.com": {'cust_id': "94107", 'order_id': "43215"} ,
|
"guest@example.com": {'cust_id': "94107", 'order_id': "43215"},
|
||||||
}}}
|
}}}
|
||||||
self.message.send()
|
self.message.send()
|
||||||
data = self.get_api_call_json()
|
data = self.get_api_call_json()
|
||||||
|
|||||||
@@ -106,4 +106,3 @@ class PostmarkDeliveryTestCase(WebhookTestCase):
|
|||||||
self.assertEqual(event.message_id, "f4830d10-9c35-4f0c-bca3-3d9b459821f8")
|
self.assertEqual(event.message_id, "f4830d10-9c35-4f0c-bca3-3d9b459821f8")
|
||||||
self.assertEqual(event.recipient, "recipient@example.com")
|
self.assertEqual(event.recipient, "recipient@example.com")
|
||||||
self.assertEqual(event.user_agent, "Mozilla/5.0 (Windows NT 5.1; rv:11.0) Gecko Firefox/11.0")
|
self.assertEqual(event.user_agent, "Mozilla/5.0 (Windows NT 5.1; rv:11.0) Gecko Firefox/11.0")
|
||||||
|
|
||||||
|
|||||||
@@ -599,9 +599,9 @@ class SendGridBackendAnymailFeatureTests(SendGridBackendMockAPITestCase):
|
|||||||
['"Recipient, Ltd." <to@example.com>'])
|
['"Recipient, Ltd." <to@example.com>'])
|
||||||
data = self.get_api_call_json()
|
data = self.get_api_call_json()
|
||||||
self.assertEqual(data["personalizations"][0]["to"][0],
|
self.assertEqual(data["personalizations"][0]["to"][0],
|
||||||
{"email": "to@example.com", "name": "Recipient, Ltd."}) # no extra quotes on name
|
{"email": "to@example.com", "name": "Recipient, Ltd."}) # no extra quotes on name
|
||||||
self.assertEqual(data["from"],
|
self.assertEqual(data["from"],
|
||||||
{"email": "from@example.com", "name": "Sender, Inc."})
|
{"email": "from@example.com", "name": "Sender, Inc."})
|
||||||
|
|
||||||
|
|
||||||
class SendGridBackendRecipientsRefusedTests(SendGridBackendMockAPITestCase):
|
class SendGridBackendRecipientsRefusedTests(SendGridBackendMockAPITestCase):
|
||||||
|
|||||||
@@ -112,7 +112,7 @@ class LazyCoercionTests(SimpleTestCase):
|
|||||||
|
|
||||||
def test_force_dict(self):
|
def test_force_dict(self):
|
||||||
result = force_non_lazy_dict({'a': 1, 'b': ugettext_lazy(u"b"),
|
result = force_non_lazy_dict({'a': 1, 'b': ugettext_lazy(u"b"),
|
||||||
'c': {'c1': ugettext_lazy(u"c1")}})
|
'c': {'c1': ugettext_lazy(u"c1")}})
|
||||||
self.assertEqual(result, {'a': 1, 'b': u"b", 'c': {'c1': u"c1"}})
|
self.assertEqual(result, {'a': 1, 'b': u"b", 'c': {'c1': u"c1"}})
|
||||||
self.assertIsInstance(result['b'], six.text_type)
|
self.assertIsInstance(result['b'], six.text_type)
|
||||||
self.assertIsInstance(result['c']['c1'], six.text_type)
|
self.assertIsInstance(result['c']['c1'], six.text_type)
|
||||||
|
|||||||
@@ -167,8 +167,7 @@ class _AssertWarnsContext(object):
|
|||||||
continue
|
continue
|
||||||
if first_matching is None:
|
if first_matching is None:
|
||||||
first_matching = w
|
first_matching = w
|
||||||
if (self.expected_regex is not None and
|
if self.expected_regex is not None and not self.expected_regex.search(str(w)):
|
||||||
not self.expected_regex.search(str(w))):
|
|
||||||
continue
|
continue
|
||||||
# store warning for later retrieval
|
# store warning for later retrieval
|
||||||
self.warning = w
|
self.warning = w
|
||||||
|
|||||||
Reference in New Issue
Block a user