diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2014-05-18 18:11:59 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2014-05-18 18:11:59 -0400 |
commit | 7c003bb14493f170fca65e2b39d3c962635ad064 (patch) | |
tree | 377b57e0d34d441edbb81435d928113b4173d59d /coverage/annotate.py | |
parent | e4d3d19a4192536d35e419468354bd8d14904098 (diff) | |
download | python-coveragepy-git-7c003bb14493f170fca65e2b39d3c962635ad064.tar.gz |
Include all files when annotating, not just relative ones. #57
Diffstat (limited to 'coverage/annotate.py')
-rw-r--r-- | coverage/annotate.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/coverage/annotate.py b/coverage/annotate.py index 19777eaf..8074df91 100644 --- a/coverage/annotate.py +++ b/coverage/annotate.py @@ -47,9 +47,6 @@ 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: |