summaryrefslogtreecommitdiff
path: root/setup.cfg
diff options
context:
space:
mode:
authorThomas Orozco <thomas@orozco.fr>2015-09-17 21:16:14 +0200
committerTim Graham <timograham@gmail.com>2015-09-18 08:10:38 -0400
commitd49667ef26c1fba0612151064d414854ae45a830 (patch)
treebfd0a687d4be6cefd20f7accff4a19b99c3da058 /setup.cfg
parentb02f08e02c34bcf19444c15b54c5f64ddd4c9ef2 (diff)
downloaddjango-d49667ef26c1fba0612151064d414854ae45a830.tar.gz
Refs #25422 -- Added a test for a template tag with type annotations.
This doesn't work in Django 1.8 but was fixed in Django 1.9 as a side effect of another change.
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.cfg b/setup.cfg
index a0b89d02e5..9ba33169ae 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -3,7 +3,7 @@ doc_files = docs extras AUTHORS INSTALL LICENSE README.rst
install-script = scripts/rpm-install.sh
[flake8]
-exclude = build,.git,./django/utils/lru_cache.py,./django/utils/six.py,./django/conf/app_template/*,./django/dispatch/weakref_backports.py,./tests/.env,./xmlrunner,tests/view_tests/tests/py3_test_debug.py
+exclude = build,.git,./django/utils/lru_cache.py,./django/utils/six.py,./django/conf/app_template/*,./django/dispatch/weakref_backports.py,./tests/.env,./xmlrunner,tests/view_tests/tests/py3_test_debug.py,tests/template_tests/annotated_tag_function.py
ignore = E123,E128,E402,W503,E731,W601
max-line-length = 119