diff options
| author | Ned Batchelder <ned@nedbatchelder.com> | 2018-10-18 15:10:58 -0400 |
|---|---|---|
| committer | Ned Batchelder <ned@nedbatchelder.com> | 2018-10-18 15:12:17 -0400 |
| commit | e57549076220764ace6f2b67da3600ff5ae33f02 (patch) | |
| tree | f58432568c9acdd2d6707f7f55e9155ec98d0b04 /doc/config.rst | |
| parent | adf376f699e9ce977dcc47329f1cef7a7a8ce9c7 (diff) | |
| download | python-coveragepy-git-e57549076220764ace6f2b67da3600ff5ae33f02.tar.gz | |
`[run] command_line` is the command line to use for 'coverage run'. #695
Diffstat (limited to 'doc/config.rst')
| -rw-r--r-- | doc/config.rst | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/doc/config.rst b/doc/config.rst index 8b534637..0b668351 100644 --- a/doc/config.rst +++ b/doc/config.rst @@ -115,6 +115,13 @@ to more than one command. ``branch`` (boolean, default False): whether to measure :ref:`branch coverage <branch>` in addition to statement coverage. +``command_line`` (string): the command-line to run your program. This will be +used if you run ``coverage run`` with no further arguments. Coverage.py +options cannot be specified here, other than ``-m`` to indicate the module to +run. + +.. versionadded:: 5.0 + ``concurrency`` (multi-string, default "thread"): the name concurrency libraries in use by the product code. If your program uses `multiprocessing`_, `gevent`_, `greenlet`_, or `eventlet`_, you must name that library in this |
