diff options
| author | Ned Batchelder <ned@nedbatchelder.com> | 2011-04-15 22:51:29 -0400 |
|---|---|---|
| committer | Ned Batchelder <ned@nedbatchelder.com> | 2011-04-15 22:51:29 -0400 |
| commit | 34a118362ab6a7cd1f9a904935519eb67c64ce37 (patch) | |
| tree | b310056bfe8108d02da28313570652d37eb66e34 | |
| parent | 39dfc5e0318522daaad99e1797e5524b1dc31bf0 (diff) | |
| download | python-coveragepy-34a118362ab6a7cd1f9a904935519eb67c64ce37.tar.gz | |
Update the docs for running coverage as a module.
| -rw-r--r-- | CHANGES.txt | 3 | ||||
| -rw-r--r-- | doc/changes.rst | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/CHANGES.txt b/CHANGES.txt index 54d5ce8..45dc1dc 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -149,6 +149,9 @@ Version 3.4b1 --- 21 August 2010 and parent processes. Use ``coverage run -p`` to get two data files that can be combined with ``coverage combine``. Fixes `issue 56`_. +- Coverage is now runnable as a module: ``python -m coverage``. Thanks, + Brett Cannon. + - When measuring code running in a virtualenv, most of the system library was being measured when it shouldn't have been. This is now fixed. diff --git a/doc/changes.rst b/doc/changes.rst index e5c4403..363b575 100644 --- a/doc/changes.rst +++ b/doc/changes.rst @@ -100,6 +100,9 @@ Execution and measurement: - When measuring code running in a virtualenv, most of the system library was being measured when it shouldn't have been. This is now fixed. +- Coverage can now be run as a module: ``python -m coverage``. Thanks, + Brett Cannon. + .. _issue 1: http://bitbucket.org/ned/coveragepy/issue/1/empty-__init__py-files-are-reported-as-1-executable .. _issue 16: http://bitbucket.org/ned/coveragepy/issue/16/allow-configuration-of-accuracy-of-percentage-totals .. _issue 34: http://bitbucket.org/ned/coveragepy/issue/34/enhanced-omit-globbing-handling |
