diff options
-rw-r--r-- | doc/config.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/config.rst b/doc/config.rst index 625a544c..8b534637 100644 --- a/doc/config.rst +++ b/doc/config.rst @@ -115,9 +115,6 @@ to more than one command. ``branch`` (boolean, default False): whether to measure :ref:`branch coverage <branch>` in addition to statement coverage. -``cover_pylib`` (boolean, default False): whether to measure the Python -standard library. - ``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 @@ -137,6 +134,9 @@ Before version 4.2, this option only accepted a single string. .. versionadded:: 5.0 +``cover_pylib`` (boolean, default False): whether to measure the Python +standard library. + ``data_file`` (string, default ".coverage"): the name of the data file to use for storing or reporting coverage. This value can include a path to another directory. |