diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2020-07-24 22:08:29 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2020-07-24 22:08:29 -0400 |
commit | 348aa47798d5d315c11d568eb87165b857d547e6 (patch) | |
tree | 7b433ee26291b6ecbc52327f665937147c89aa10 /doc/help/debug.rst | |
parent | 5a30c8d82aa942ce882fda8dbf16f5ec6f9608c4 (diff) | |
download | python-coveragepy-git-348aa47798d5d315c11d568eb87165b857d547e6.tar.gz |
Help in docs didn't work with tmp
Diffstat (limited to 'doc/help/debug.rst')
-rw-r--r-- | doc/help/debug.rst | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/doc/help/debug.rst b/doc/help/debug.rst new file mode 100644 index 00000000..7c71e90e --- /dev/null +++ b/doc/help/debug.rst @@ -0,0 +1,18 @@ + +.. code:: + + $ coverage debug --help + Usage: coverage debug <topic> + + Display information about the internals of coverage.py, for diagnosing + problems. Topics are: 'data' to show a summary of the collected data; 'sys' to + show installation information; 'config' to show the configuration; 'premain' + to show what is calling coverage. + + Options: + --debug=OPTS Debug options, separated by commas. [env: COVERAGE_DEBUG] + -h, --help Get help on this command. + --rcfile=RCFILE Specify configuration file. By default '.coveragerc', + 'setup.cfg', 'tox.ini', and 'pyproject.toml' are tried. + [env: COVERAGE_RCFILE] + |