diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2011-08-27 22:12:20 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2011-08-27 22:12:20 -0400 |
commit | 802a9199403947f5edbe1df573342bb502ddeb0e (patch) | |
tree | 0bc7bc2435bd05a88e355240b0783ec560ba72e3 /doc/cmd.rst | |
parent | 3b4fd38f14ad2677213308bd3ed6c076162cfcc0 (diff) | |
download | python-coveragepy-git-802a9199403947f5edbe1df573342bb502ddeb0e.tar.gz |
Document the [paths] section in the config file.
Diffstat (limited to 'doc/cmd.rst')
-rw-r--r-- | doc/cmd.rst | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/cmd.rst b/doc/cmd.rst index 0a7c6279..302eb979 100644 --- a/doc/cmd.rst +++ b/doc/cmd.rst @@ -11,6 +11,7 @@ Coverage command line usage :history: 20091127T200700, changes for 3.2 :history: 20100223T200600, changes for 3.3 :history: 20100725T211700, updated for 3.4 +:history: 20110827T212500, updated for 3.5.1, combining aliases .. highlight:: console @@ -139,6 +140,11 @@ data file:: $ coverage combine +If the different machines run your code from different places in their file +systems, coverage won't know how to combine the data. You can tell coverage +how the different locations correlate with a ``[paths]`` section in your +configuration file. See :ref:`config_paths` for details. + .. _cmd_reporting: |