From ecf5b0dfcf5b15d8325666beed0c101efc35ec23 Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Sat, 26 Sep 2009 20:08:24 -0400 Subject: HTML report includes non-relative code units also. Fixes issue #11, though the paths displayed in the HTML are kind of heinous. --- coverage/report.py | 2 -- 1 file changed, 2 deletions(-) (limited to 'coverage/report.py') 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: -- cgit v1.2.1