File tree Expand file tree Collapse file tree 2 files changed +18
-2
lines changed Expand file tree Collapse file tree 2 files changed +18
-2
lines changed Original file line number Diff line number Diff line change @@ -349,13 +349,13 @@ def get_prog_name(self):
349
349
"debug" , GLOBAL_ARGS ,
350
350
usage = "<topic>" ,
351
351
description = (
352
- "Display information on the internals of coverage.py, "
352
+ "Display information about the internals of coverage.py, "
353
353
"for diagnosing problems. "
354
354
"Topics are: "
355
355
"'data' to show a summary of the collected data; "
356
356
"'sys' to show installation information; "
357
357
"'config' to show the configuration; "
358
- "or 'premain' to show what is calling coverage."
358
+ "'premain' to show what is calling coverage."
359
359
),
360
360
),
361
361
@@ -831,6 +831,7 @@ def unglob_args(args):
831
831
Commands:
832
832
annotate Annotate source files with execution information.
833
833
combine Combine a number of data files.
834
+ debug Display information about the internals of coverage.py
834
835
erase Erase previously collected coverage data.
835
836
help Get help on using coverage.py.
836
837
html Create an HTML report.
Original file line number Diff line number Diff line change @@ -43,6 +43,9 @@ COMMAND OVERVIEW
43
43
|command | **combine **
44
44
Combine a number of data files.
45
45
46
+ |command | **debug **
47
+ Display information about the internals of coverage.py.
48
+
46
49
|command | **erase **
47
50
Erase previously collected coverage data.
48
51
@@ -116,6 +119,18 @@ COMMAND REFERENCE
116
119
Append coverage data to .coverage, otherwise it starts clean each
117
120
time.
118
121
122
+ **debug ** `TOPIC ` ...
123
+
124
+ Display information about the internals of coverage.py, for diagnosing
125
+ problems.
126
+
127
+ Topics are:
128
+
129
+ ``data `` to show a summary of the collected data;
130
+ ``sys `` to show installation information;
131
+ ``config `` to show the configuration;
132
+ ``premain `` to show what is calling coverage.
133
+
119
134
**erase **
120
135
121
136
Erase previously collected coverage data.
You can’t perform that action at this time.
0 commit comments