diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2020-06-29 20:48:38 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2020-06-29 20:48:38 -0400 |
commit | d00f254315ef4e97e86e230c448d6325c97e08dc (patch) | |
tree | 0bb8ebb4394b7fc65b1989256056cec18101b01b /doc | |
parent | 2c6c421dbee26b138a4b84738057001d646cb7dc (diff) | |
download | python-coveragepy-git-d00f254315ef4e97e86e230c448d6325c97e08dc.tar.gz |
Simplify testing of --no-skip-covered, and add docs
Diffstat (limited to 'doc')
-rw-r--r-- | doc/cmd.rst | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/cmd.rst b/doc/cmd.rst index 31ae6e01..63aa6ac5 100644 --- a/doc/cmd.rst +++ b/doc/cmd.rst @@ -364,7 +364,8 @@ command line:: TOTAL 76 10 87% The ``--skip-covered`` switch will skip any file with 100% coverage, letting -you focus on the files that still need attention. The ``--skip-empty`` switch +you focus on the files that still need attention. The ``--no-skip-covered`` +option can be used if needed to see all the files. The ``--skip-empty`` switch will skip any file with no executable statements. If you have :ref:`recorded contexts <contexts>`, the ``--contexts`` option lets |