diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2016-07-04 09:40:27 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2016-07-04 09:40:27 -0400 |
commit | 7e68725a05a54993444d67eb352f2177f58541ac (patch) | |
tree | fedd86f5e92c9abe18288f93b16902072df7a2ca | |
parent | 7da3c9558f62fae50c9839a94c66212744512384 (diff) | |
download | python-coveragepy-git-7e68725a05a54993444d67eb352f2177f58541ac.tar.gz |
Tweak the docs about using other options with multiprocessing
-rw-r--r-- | doc/cmd.rst | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/doc/cmd.rst b/doc/cmd.rst index 27c83aac..64448b09 100644 --- a/doc/cmd.rst +++ b/doc/cmd.rst @@ -109,8 +109,9 @@ or ``gevent``. Values other than ``thread`` require the :ref:`C extension <install_extension>`. If you are using ``--concurrency=multiprocessing``, you must set other options -in the configuration file. Other options on the command line will not be -passed to the other processes. +in the configuration file. Options on the command line will not be passed to +the processes that multiprocessing creates. Best practice is to use the +configuration file for all options. .. _multiprocessing: https://docs.python.org/2/library/multiprocessing.html .. _greenlet: http://greenlet.readthedocs.org/en/latest/ |