diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2012-11-21 22:05:46 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2012-11-21 22:05:46 -0500 |
commit | 7a3919e5bd765b0e6d8474de5a064f855daaf362 (patch) | |
tree | 653d416cb93aeb69933d0816b034800446feef76 | |
parent | ebe72820b0a20bbba08e7e0b0fb02d47fa96f24b (diff) | |
download | python-coveragepy-git-7a3919e5bd765b0e6d8474de5a064f855daaf362.tar.gz |
Another bug on the changes list. #67
-rw-r--r-- | CHANGES.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/CHANGES.txt b/CHANGES.txt index 1316df13..c5f38cf1 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -27,6 +27,9 @@ Version 3.6b1 - Embarrassingly, the `[xml] output=' setting in the .coveragerc file simply didn't work. Now it does. +- The XML report now consistently uses filenames for the filename attribute, + rather than sometimes using module names. Fixes `issue 67`_. + - Coverage percentage metrics are now computed slightly differently under branch coverage. This means that completely unexecuted files will now correctly have 0% coverage, fixing `issue 156`_. This also means that your @@ -72,6 +75,7 @@ Version 3.6b1 - Other minor bugs fixed: `issue 153`_. +.. _issue 67: https://bitbucket.org/ned/coveragepy/issue/67/xml-report-filenames-may-be-generated .. _issue 82: https://bitbucket.org/ned/coveragepy/issue/82/tokenerror-when-generating-html-report .. _issue 89: https://bitbucket.org/ned/coveragepy/issue/89/on-windows-all-packages-are-reported-in .. _issue 111: https://bitbucket.org/ned/coveragepy/issue/111/when-installing-coverage-with-pip-not |