diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2016-12-24 17:00:35 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2016-12-24 17:00:35 -0500 |
commit | 09ddbdd22378dfb7c9f3c485b03cf7f9251cb066 (patch) | |
tree | c8b71237ddc1f83bc4fd4c9cfec754efb563c648 | |
parent | 644f3dadc645f970fbaf80bf91aceb809c02d1a2 (diff) | |
download | python-coveragepy-git-09ddbdd22378dfb7c9f3c485b03cf7f9251cb066.tar.gz |
Update changes and contributors for #502
-rw-r--r-- | CHANGES.rst | 7 | ||||
-rw-r--r-- | CONTRIBUTORS.txt | 1 |
2 files changed, 7 insertions, 1 deletions
diff --git a/CHANGES.rst b/CHANGES.rst index 40f82e61..04adc37a 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -25,10 +25,14 @@ Unreleased 493`_. This is now fixed. Thanks to Joe Doherty for the report and Loïc Dachary for the fix. - - A while-loop with a constant condition (while True) and a continue + - A while loop with a constant condition (while True) and a continue statement would be mis-analyzed, as described in `issue 496`_. This is now fixed, thanks to a bug report by Eli Skeggs and a fix by Loïc Dachary. + - While loops with constant conditions that were never executed could result + in a non-zero coverage report. Artem Dayneko reported this in `issue + 502`_, and Loïc Dachary provided the fix. + - Options can now be read from a tox.ini file, if any. Like setup.cfg, sections are prefixed with "coverage:", so ``[run]`` options will be read from the ``[coverage:run]`` section of tox.ini. Implements part of `issue 519`_. @@ -98,6 +102,7 @@ Unreleased .. _issue 412: https://bitbucket.org/ned/coveragepy/issues/412/coverage-combine-should-error-if-no .. _issue 493: https://bitbucket.org/ned/coveragepy/issues/493/confusing-branching-failure .. _issue 496: https://bitbucket.org/ned/coveragepy/issues/496/incorrect-coverage-with-branching-and +.. _issue 502: https://bitbucket.org/ned/coveragepy/issues/502/incorrect-coverage-report-with-cover .. _issue 505: https://bitbucket.org/ned/coveragepy/issues/505/use-canonical-filename-for-debounce .. _issue 514: https://bitbucket.org/ned/coveragepy/issues/514/path-to-problem-file-not-reported-when .. _issue 510: https://bitbucket.org/ned/coveragepy/issues/510/erase-still-needed-in-42 diff --git a/CONTRIBUTORS.txt b/CONTRIBUTORS.txt index a3c5ffb1..db7a9db4 100644 --- a/CONTRIBUTORS.txt +++ b/CONTRIBUTORS.txt @@ -9,6 +9,7 @@ Alex Gaynor Alexander Todorov Anthony Sottile Arcadiy Ivanov +Artem Dayneko Ben Finney Bill Hart Brandon Rhodes |