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 | 8d1a7b3a9a1a067610a9a55a73b721dd2783d30c (patch) | |
tree | ca81fd3f5dd038513ce0fbe2b683bd4fb4063c08 | |
parent | 8b615a927f17fa4ebcc04c61e15b32e9e3e5c92d (diff) | |
download | python-coveragepy-8d1a7b3a9a1a067610a9a55a73b721dd2783d30c.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 1316df1..c5f38cf 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 |