Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .isort.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
[settings]
combine_as_imports=True
force_grid_wrap=0
include_trailing_comma=True
line_length=79
multi_line_output=3
known_third_party = coverage,django,setuptools,six,unittest_mixins
7 changes: 5 additions & 2 deletions AUTHORS.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
The Django coverage plugin was written by Ned Batchelder, with other
contributions by:

Andrew Pinkham
Aron Griffis
Emil Madsen
Federico Bond
Jessamyn Smith
Simon Charette
Pamela McA'Nulty
Emil Madsen
Simon Charette
124 changes: 124 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,124 @@
=======
History
=======


v1.6.0 --- 2018-09-04
---------------------

Add support for Django 2.1.


v1.5.2 --- 2017-10-18
---------------------

Validates support for Django version 2.0b1. Improves discovery of
template files.


v1.5.1a --- 2017-04-05
----------------------

Validates support for Django version 1.11. Testing for new package
maintainer Pamela McA'Nulty


v1.5.0 --- 2017-02-23
---------------------

Removes support for Django versions below 1.8. Validates support for
Django version 1.11b1


v1.4.2 --- 2017-02-06
---------------------

Fixes another instance of `issue 32`_, which was the result of an
initialization order problem.



v1.4.1 --- 2017-01-25
---------------------

Fixes `issue 32`_, which was the result of an initialization order
problem.

.. _issue 32: https://github.com/nedbat/django_coverage_plugin/issues/32



v1.4 --- 2017-01-16
-------------------

Django 1.10.5 is now supported.

Checking settings configuration is deferred so that settings.py is
included in coverage reporting. Fixes `issue 28`_.

Only the ``django.template.backends.django.DjangoTemplates`` template
engine is supported, and it must be configured with
``['OPTIONS']['debug'] = True``. Fixes `issue 27`_.

.. _issue 28: https://github.com/nedbat/django_coverage_plugin/issues/28
.. _issue 27: https://github.com/nedbat/django_coverage_plugin/issues/27



v1.3.1 --- 2016-06-02
---------------------

Settings are read slightly differently, so as to not interfere with
programs that don't need settings. Fixes `issue 18`_.

.. _issue 18: https://github.com/nedbat/django_coverage_plugin/issues/18



v1.3 --- 2016-04-03
-------------------

Multiple template engines are allowed. Thanks, Simon Charette.



v1.2.2 --- 2016-02-01
---------------------

No change in code, but Django 1.9.2 is now supported.



v1.2.1 --- 2016-01-28
---------------------

The template debug settings are checked properly for people still using
``TEMPLATE_DEBUG`` in newer versions of Django.



v1.2 --- 2016-01-16
-------------------

Check if template debugging is enabled in the settings, and raise a
visible warning if not. This prevents mysterious failures of the
plugin, and fixes `issue 17`_.

Potential Django 1.9 support is included, but the patch to Django hasn't
been applied yet.

.. _issue 17: https://github.com/nedbat/django_coverage_plugin/issues/17



v1.1 --- 2015-11-12
-------------------

Explicitly configure settings if need be to get things to work.



v1.0 --- 2015-09-20
-------------------

First version :)
17 changes: 14 additions & 3 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,4 +1,15 @@
# Licensed under the Apache License: http://www.apache.org/licenses/LICENSE-2.0
# For details: https://github.com/nedbat/django_coverage_plugin/blob/master/NOTICE.txt
# Licensed under the Apache 2.0 License
# - http://www.apache.org/licenses/LICENSE-2.0
# - https://github.com/nedbat/django_coverage_plugin/blob/master/NOTICE.txt

include requirements.txt
exclude .isort.cfg
exclude howto.txt
exclude Makefile
exclude requirements.txt
exclude tox.ini
include AUTHORS.txt
include HISTORY.rst
include LICENSE.txt
include NOTICE.txt
include README.rst
prune tests
Loading