diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2009-09-26 20:08:24 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2009-09-26 20:08:24 -0400 |
commit | ecf5b0dfcf5b15d8325666beed0c101efc35ec23 (patch) | |
tree | c84d662dbd398602696e573aa03c483ff456b8bb /coverage/report.py | |
parent | 13a69926134a926ea047d91bff06865bd5097a04 (diff) | |
download | python-coveragepy-git-ecf5b0dfcf5b15d8325666beed0c101efc35ec23.tar.gz |
HTML report includes non-relative code units also. Fixes issue #11, though the paths displayed in the HTML are kind of heinous.
Diffstat (limited to 'coverage/report.py')
-rw-r--r-- | coverage/report.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/coverage/report.py b/coverage/report.py index 561973b5..0ae4ce64 100644 --- a/coverage/report.py +++ b/coverage/report.py @@ -50,8 +50,6 @@ class Reporter(object): for cu in self.code_units: try: - if not cu.relative: - continue statements, excluded, missing, _ = self.coverage._analyze(cu) report_fn(cu, statements, excluded, missing) except KeyboardInterrupt: |