summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2010-06-13 22:50:55 -0400
committerNed Batchelder <ned@nedbatchelder.com>2010-06-13 22:50:55 -0400
commit428cbe16214df8a9ae85a47f25e3c57c364d7523 (patch)
tree61094b2ae89dce776d84797bd02abf74fc0405c7
parent985f7fc0126120e2eb0fab1727d2aab1a8a43f38 (diff)
downloadpython-coveragepy-git-428cbe16214df8a9ae85a47f25e3c57c364d7523.tar.gz
Update the CHANGES.txt file
-rw-r--r--CHANGES.txt10
1 files changed, 9 insertions, 1 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index b4b2c7b1..1675e985 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -13,6 +13,10 @@ Version 3.4a1
coverage.py, replaced with `omit`, a list of filename patterns suitable for
`fnmatch`. A parallel argument `include` controls what files are included.
+- The run command now has a ``--source`` switch, a list of directories or
+ module names. If provided, coverage.py will only measure execution in those
+ source files.
+
- The reporting commands (report, annotate, html, and xml) now have an
``--include`` switch to restrict reporting to modules beginning with those
prefixes, similar to the existing ``--omit`` switch. Thanks, Zooko.
@@ -22,11 +26,15 @@ Version 3.4a1
during reporting. Thanks Zooko.
- Coverage.py now installs a test-runner plugin for `nose`_ and `py.test`_.
- Thanks, David Stanek, holger krekel, Ross Lawley.
+ Thanks, David Stanek, holger krekel, and Ross Lawley.
.. _nose: http://somethingaboutorange.com/mrl/projects/nose/
.. _py.test: http://pytest.org
+- Since coverage.py 3.1, using the Python trace function has been slower than
+ it needs to be. A cache of tracing decisions was broken, but has now been
+ fixed.
+
- Reports now have a column of missed line counts rather than executed line
counts, since developers should focus on reducing the missed lines to zero,
rather than increasing the executed lines to varying targets. Once