diff options
| author | Ned Batchelder <ned@nedbatchelder.com> | 2012-04-18 08:35:47 -0400 |
|---|---|---|
| committer | Ned Batchelder <ned@nedbatchelder.com> | 2012-04-18 08:35:47 -0400 |
| commit | 9840d2de631dbfb99306c9b2930bcf40a624bbfb (patch) | |
| tree | 9a65bad8e59e769ebd0ebcec29fa92628f52d82f /CHANGES.txt | |
| parent | 964668c05af407eb95aad0b15e90b29f0ad0c53c (diff) | |
| download | python-coveragepy-git-9840d2de631dbfb99306c9b2930bcf40a624bbfb.tar.gz | |
Add show_missing to the config file. #173.
Diffstat (limited to 'CHANGES.txt')
| -rw-r--r-- | CHANGES.txt | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/CHANGES.txt b/CHANGES.txt index 52881038..27b8e8ad 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -7,7 +7,7 @@ Version 3.5.2b1 - Source files with custom encodings declared in a comment at the top are now properly handled during reporting on Python 2. Python 3 always handled them - properly. This fixes `issue 157`_. + properly. This fixes `issue 157`_. - Backup files left behind by editors are no longer collected by the source= option, fixing `issue 168`_. @@ -16,6 +16,10 @@ Version 3.5.2b1 if the filename seems like maybe it wasn't meant to be Python. This is a pragmatic fix for `issue 82`_. +- The ``-m`` switch on ``coverage report``, which includes missing line numbers + in the summary report, can now be specifed as ``show_missing`` in the + config file. Closes `issue 173`_. + - When running a module with ``coverage run -m <modulename>``, certain details of the execution environment weren't the same as for ``python -m <modulename>``. This had the unfortunate side-effect of making @@ -33,6 +37,7 @@ Version 3.5.2b1 .. _issue 157: https://bitbucket.org/ned/coveragepy/issue/157/chokes-on-source-files-with-non-utf-8 .. _issue 166: https://bitbucket.org/ned/coveragepy/issue/166/dont-try-to-compile-c-extension-on-pypy .. _issue 168: https://bitbucket.org/ned/coveragepy/issue/168/dont-be-alarmed-by-emacs-droppings +.. _issue 173: https://bitbucket.org/ned/coveragepy/issue/173/theres-no-way-to-specify-show-missing-in Version 3.5.1 --- 23 September 2011 |
