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 /doc | |
parent | 964668c05af407eb95aad0b15e90b29f0ad0c53c (diff) | |
download | python-coveragepy-git-9840d2de631dbfb99306c9b2930bcf40a624bbfb.tar.gz |
Add show_missing to the config file. #173.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/config.rst | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/doc/config.rst b/doc/config.rst index aed52300..7a54eec5 100644 --- a/doc/config.rst +++ b/doc/config.rst @@ -161,12 +161,15 @@ supply the "pragma: no branch" regex if you still want to use it. display for reported coverage percentages. The default is 0, displaying for example "87%". A value of 2 will display percentages like "87.32%". +``show_missing`` (boolean, default False): when running a summary report, +show missing lines. See :ref:`cmd_summary` for more information. + [html] ------ Values particular to HTML reporting. The values in the ``[report]`` section -also apply to HTML output. +also apply to HTML output, where appropriate. ``directory`` (string, default "htmlcov"): where to write the HTML report files. @@ -175,6 +178,6 @@ also apply to HTML output. ----- Values particular to XML reporting. The values in the ``[report]`` section -also apply to XML output. +also apply to XML output, where appropriate. ``output`` (string, default "coverage.xml"): where to write the XML report. |