diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2012-11-03 22:56:16 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2012-11-03 22:56:16 -0400 |
commit | cf76d91fcb859f026b948df15734c0e95d8b9cb9 (patch) | |
tree | 6a1758db76fb268977ce769fd9ea31df21357dd6 | |
parent | 327426896a6fdd2dc53543c35eb8ab1097d51cd4 (diff) | |
download | python-coveragepy-git-cf76d91fcb859f026b948df15734c0e95d8b9cb9.tar.gz |
Forgot to update CHANGES.txt for the --fail-under switch.
-rw-r--r-- | CHANGES.txt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/CHANGES.txt b/CHANGES.txt index 8894734a..8785d15b 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -13,6 +13,10 @@ Version 3.5.4b1 configuration file, please check carefully that you were not relying on the old broken behavior. +- The **report**, **html**, and **xml** commands now accept a ``--fail-under`` + switch that indicates in the exit status whether the coverage percentage was + less than a particular value. Closes `issue 139`_. + - The reporting functions coverage.report(), coverage.html_report(), and coverage.xml_report() now all return a float, the total percentage covered measurement. @@ -27,6 +31,7 @@ Version 3.5.4b1 - Docstrings for the legacy singleton methods are more helpful. Thanks Marius Gedminas. Closes `issue 205`_. +.. _issue 139: https://bitbucket.org/ned/coveragepy/issue/139/easy-check-for-a-certain-coverage-in-tests .. _issue 163: https://bitbucket.org/ned/coveragepy/issue/163/problem-with-include-and-omit-filename .. _issue 193: https://bitbucket.org/ned/coveragepy/issue/193/unicodedecodeerror-on-htmlpy .. _issue 201: https://bitbucket.org/ned/coveragepy/issue/201/coverage-using-django-14-with-pydb-on |