diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2021-01-10 21:00:09 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2021-01-10 21:11:46 -0500 |
commit | 46f4b1204f7dd270c96087bbbe351d842881096e (patch) | |
tree | 6164452f48d42f9f5c73f18d0c54cf2fa9e8425e /CHANGES.rst | |
parent | 69573662dab1203009075bca655eadf088aeda78 (diff) | |
download | python-coveragepy-git-nedbat/html-skip-covered.tar.gz |
skip_covered and skip_empty for HTML. #1090nedbat/html-skip-covered
Diffstat (limited to 'CHANGES.rst')
-rw-r--r-- | CHANGES.rst | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/CHANGES.rst b/CHANGES.rst index 188b804c..31515c2d 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -29,12 +29,19 @@ Unreleased of the output easier. Thanks, Judson Neer. This had been requested a number of times (`issue 1086`_, `issue 922`_, `issue 732`_). +- The ``skip_covered`` and ``skip_empty`` settings in the configuration file + can now be specified in the ``[html]`` section, so that text reports and HTML + reports can use separate settings. The HTML report will still use the + ``[report]`` settings if there isn't a value in the ``[html]`` section. + Closes `issue 1090`_. + - Update to support Python 3.10 alphas in progress, including `PEP 626: Precise line numbers for debugging and other tools <pep626_>`_. -.. _issue 1086: https://github.com/nedbat/coveragepy/issues/1086 .. _issue 732: https://github.com/nedbat/coveragepy/issues/732 .. _issue 922: https://github.com/nedbat/coveragepy/issues/922 +.. _issue 1086: https://github.com/nedbat/coveragepy/issues/1086 +.. _issue 1090: https://github.com/nedbat/coveragepy/issues/1090 .. _pep626: https://www.python.org/dev/peps/pep-0626/ |