summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2018-10-18 14:59:51 -0400
committerNed Batchelder <ned@nedbatchelder.com>2018-10-18 14:59:51 -0400
commitadf376f699e9ce977dcc47329f1cef7a7a8ce9c7 (patch)
tree8f6bb2e09df02d4cedf6c65a8a562207a9774e6c
parent24219dda093239a09596116dd1fdd8839c1957b4 (diff)
downloadpython-coveragepy-git-adf376f699e9ce977dcc47329f1cef7a7a8ce9c7.tar.gz
This was in the wrong place
-rw-r--r--doc/config.rst6
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.