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 | bc4c3ab2349aeb1cdd0840771fff5111e4b7a119 (patch) | |
| tree | 42237a08654f47a55bde60cf7f023558da82c70a /coverage/report.py | |
| parent | 089564321d2c3722118badabde6164dfbadec1a7 (diff) | |
| download | python-coveragepy-bc4c3ab2349aeb1cdd0840771fff5111e4b7a119.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 561973b..0ae4ce6 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: |
