diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2016-03-28 07:00:10 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2016-03-28 07:00:10 -0400 |
commit | db1a8306331000b881a7ce9e8103f76d8e060d89 (patch) | |
tree | 5237860ea077bddad2025ab8ea05589b0fa524e2 | |
parent | 3e03a20a7a95aa9b5bd9d11b643489e22682832f (diff) | |
download | python-coveragepy-git-db1a8306331000b881a7ce9e8103f76d8e060d89.tar.gz |
#475 is fixed, say so
-rw-r--r-- | CHANGES.rst | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/CHANGES.rst b/CHANGES.rst index 63f2c9a8..0d912b98 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -17,6 +17,10 @@ Unreleased were incorrectly marked as missing, as reported in `issue 440`_. This is now fixed. +- During branch coverage of single-line callables like lambdas and generator + expressions, coverage.py can now distinguish between them never being called, + or being called but not completed. Fixes `issue 475`_. + - The HTML report now has a map of the file along the rightmost edge of the page, giving an overview of where the missed lines are. Thanks, Dmitry Shishov. @@ -28,6 +32,7 @@ Unreleased .. _issue 440: https://bitbucket.org/ned/coveragepy/issues/440/yielded-twisted-failure-marked-as-missed .. _issue 472: https://bitbucket.org/ned/coveragepy/issues/472/html-report-indents-incorrectly-for-one +.. _issue 475: https://bitbucket.org/ned/coveragepy/issues/475/generator-expression-is-marked-as-not Version 4.1b2 --- 2016-01-23 |