@@ -10,8 +10,10 @@ A `coverage.py`_ plugin to measure the coverage of Django templates.
1010| |license| |versions| |djversions| |status|
1111| |kit| |downloads|
1212
13- Supported Python versions are 2.7, 3.4, and 3.5. Supported Django versions are
14- 1.4 through 1.9.
13+ Supported Python versions are 2.7, 3.4, 3.5 and 3.6.
14+ Supported Django versions are 1.4 through 1.10.
15+ Supported coverage.py versions are 4.0 and higher.
16+
1517
1618The plugin is pip installable::
1719
@@ -23,7 +25,7 @@ To run it, add this setting to your .coveragerc file::
2325 plugins =
2426 django_coverage_plugin
2527
26- Then run your tests under coverage.py. It requires coverage.py 4.0 or later.
28+ Then run your tests under coverage.py.
2729
2830You will see your templates listed in your coverage report along with your
2931Python modules.
@@ -43,6 +45,8 @@ template files are included in the report.
4345Caveats
4446~~~~~~~
4547
48+ Support for Django versions 1.4 through 1.7 should be considered deprecated.
49+
4650Files included by the ``{% ssi %} `` tag are not included in the coverage
4751measurements.
4852
@@ -54,6 +58,22 @@ Changes
5458~~~~~~~
5559
5660
61+ v1.4 --- 2017-01-15
62+ ---------------------
63+
64+ Django 1.10.5 is now supported.
65+
66+ Checking settings configuration is deferred so that settings.py is included
67+ in coverage reporting. Fixes `issue 28 `_.
68+
69+ Only the django.template.backends.django.DjangoTemplates template engine is
70+ supported, and it must be configured with ['OPTIONS']['debug'] = True. Fixes
71+ `issue 27 `_.
72+
73+ .. _issue 28 : https://github.com/nedbat/django_coverage_plugin/issues/28
74+ .. _issue 27 : https://github.com/nedbat/django_coverage_plugin/issues/27
75+
76+
5777v1.3.1 --- 2016-06-02
5878---------------------
5979
0 commit comments