Skip to content

Commit 2e53cb8

Browse files
committed
Version 0.5
1 parent 05f5a50 commit 2e53cb8

File tree

4 files changed

+8
-9
lines changed

4 files changed

+8
-9
lines changed

README.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Django Template Coverage Plugin
44
A `coverage.py`_ plugin to measure the coverage of Django templates.
55

66
Supported Python versions are 2.7 and 3.4. Supported Django versions are 1.4
7-
through 1.8 alpha.
7+
through 1.8.
88

99
The plugin itself is pip installable::
1010

@@ -38,7 +38,8 @@ template files are included in the report.
3838
Caveats
3939
-------
4040

41-
The `{% ssi %}` tag does not trace the files it includes.
41+
Files included by the `{% ssi %}` tag are not included in the coverage
42+
measurements.
4243

4344
Coverage can't tell whether a `{% blocktrans %}` tag used the singular or
4445
plural text, so both are marked as used if the tag is used.
@@ -54,8 +55,7 @@ you want to help me with it, feel free to drop me an email.
5455

5556
The coverage.py plugin mechanism is designed to be generally useful for hooking
5657
into the collection and reporting phases of coverage.py, specifically to
57-
support non-Python files. I've also got a plugin for Mako templates, but it
58-
needs some fixes from Mako. If you have non-Python files you'd like to support
58+
support non-Python files. If you have non-Python files you'd like to support
5959
in coverage.py, let's talk.
6060

6161

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# If you change this file, don't forget to update tox.ini and setup.py also.
2-
coverage >= 4.0a5
2+
coverage >= 4.0a6
33
Django >= 1.4
44
six >= 1.4.0
55
tox >= 1.8

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
setup(
66
name='django_coverage_plugin',
7-
version='0.3.4',
7+
version='0.5',
88
description='Django template coverage.py plugin',
99
author='Ned Batchelder',
1010
author_email='[email protected]',
@@ -13,7 +13,7 @@
1313
install_requires=[
1414
# If you change this, update tox.ini and requirements.txt also.
1515
'Django >= 1.4',
16-
'coverage >= 4.0a5',
16+
'coverage >= 4.0a6',
1717
'six >= 1.4.0',
1818
],
1919
)

tox.ini

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,10 @@ deps =
1919
django15: Django >=1.5, <1.6
2020
django16: Django >=1.6, <1.7
2121
django17: Django >=1.7, <1.8
22-
django18: Django >=1.8a1, <1.9
22+
django18: Django >=1.8, <1.9
2323
six >= 1.4.0
2424
coverage >= 4.0a6
2525

26-
2726
commands =
2827
{envpython} -c "import tests.banner"
2928
{envpython} -m unittest {posargs:discover -b}

0 commit comments

Comments
 (0)