summaryrefslogtreecommitdiff
path: root/coverage/control.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2010-08-20 22:40:00 -0400
committerNed Batchelder <ned@nedbatchelder.com>2010-08-20 22:40:00 -0400
commit0318b3be415d5a6281b68fa8a2b86d5660a314ed (patch)
tree25d3db6fae4d0ee2c2daacfb6d3c0c19bcd898c7 /coverage/control.py
parentdc7fb7d0695d8d9de763db264bad317682040167 (diff)
downloadpython-coveragepy-git-0318b3be415d5a6281b68fa8a2b86d5660a314ed.tar.gz
Don't trace code if the reported filename is *.html. Fixes issue #82.
Diffstat (limited to 'coverage/control.py')
-rw-r--r--coverage/control.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/coverage/control.py b/coverage/control.py
index b7dfa0a8..05a75031 100644
--- a/coverage/control.py
+++ b/coverage/control.py
@@ -198,6 +198,14 @@ class coverage(object):
# can't do anything with the data later anyway.
return False
+ if filename.endswith(".html"):
+ # Jinja and maybe other templating systems compile templates into
+ # Python code, but use the template filename as the filename in
+ # the compiled code. Of course, those filenames are useless later
+ # so don't bother collecting. TODO: How should we really separate
+ # out good file extensions from bad?
+ return False
+
self._check_for_packages()
# Compiled Python files have two filenames: frame.f_code.co_filename is