diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2012-11-17 09:10:18 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2012-11-17 09:10:18 -0500 |
commit | b759d1982be393f5ec21bfc71e5e41ffcc00aeb3 (patch) | |
tree | 3ccb57ad33c4b5836f3cb4d43b45c75da6e99d7b /doc | |
parent | 0b921d098a92ac44f648aef7bb20695fe7f1986c (diff) | |
download | python-coveragepy-git-b759d1982be393f5ec21bfc71e5e41ffcc00aeb3.tar.gz |
Create coverage-X.Y aliases also. Closes #111.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/cmd.rst | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/doc/cmd.rst b/doc/cmd.rst index dd11f92f..7171ec51 100644 --- a/doc/cmd.rst +++ b/doc/cmd.rst @@ -23,7 +23,9 @@ Coverage command line usage When you install coverage.py, a command-line script simply called ``coverage`` is placed in your Python scripts directory. To help with multi-version installs, it will also create either a ``coverage2`` or ``coverage3`` alias, -depending on the version of Python you're using. +and a ``coverage-X.Y`` alias, depending on the version of Python you're using. +For example, when installing on Python 2.7, you will be able to use +``coverage``, ``coverage2``, or ``coverage-2.7`` on the command line. Coverage has a number of commands which determine the action performed: |