diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2022-11-06 12:17:11 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2022-11-06 13:33:53 -0500 |
commit | e5a15c1d5652574ba85673f814b09f5da333fca8 (patch) | |
tree | 889dc8497bfb1817f91d8322f74ba35db5efceb2 /coverage/control.py | |
parent | 30f1ecf0657fa89b56eab300f10c58852edbbcdd (diff) | |
download | python-coveragepy-git-e5a15c1d5652574ba85673f814b09f5da333fca8.tar.gz |
feat: --format=total writes just the total number
Diffstat (limited to 'coverage/control.py')
-rw-r--r-- | coverage/control.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coverage/control.py b/coverage/control.py index d260eeab..9a55acb1 100644 --- a/coverage/control.py +++ b/coverage/control.py @@ -924,7 +924,7 @@ class Coverage: `file` is a file-like object, suitable for writing. `output_format` determines the format, either "text" (the default), - or "markdown". + "markdown", or "total". `include` is a list of file name patterns. Files that match will be included in the report. Files matching `omit` will not be included in |