diff options
Diffstat (limited to 'coverage')
-rw-r--r-- | coverage/annotate.py | 3 | ||||
-rw-r--r-- | coverage/report.py | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/coverage/annotate.py b/coverage/annotate.py index 3cbe2407..3130c001 100644 --- a/coverage/annotate.py +++ b/coverage/annotate.py @@ -43,6 +43,9 @@ class AnnotateReporter(Reporter): `cu` is the CodeUnit for the file to annotate. """ + if not cu.relative: + return + filename = cu.filename source = cu.source_file() if self.directory: 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: |