summaryrefslogtreecommitdiff
path: root/CHANGES.txt
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2010-03-13 22:14:57 -0500
committerNed Batchelder <ned@nedbatchelder.com>2010-03-13 22:14:57 -0500
commit9f6fa1c7806e7802572b28e8ecbd57a9afe5ec21 (patch)
treed4dc63b5974b040225223e6774828dd15ddd4687 /CHANGES.txt
parent99d1f54a583e5ac22742dada31a980b3145ce528 (diff)
downloadpython-coveragepy-9f6fa1c7806e7802572b28e8ecbd57a9afe5ec21.tar.gz
Reports now emphasize missed lines over executed lines, since those are more helpful for directing developers to improved test coverage.
Diffstat (limited to 'CHANGES.txt')
-rw-r--r--CHANGES.txt5
1 files changed, 5 insertions, 0 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index 6a8cf84..098740f 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -6,6 +6,11 @@ Change history for Coverage.py
Next version
------------
+- 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
+ suggested, this seemed blindingly obvious.
+
- Source files with DOS line endings are now properly tokenized for syntax
coloring on non-DOS machines. Fixes `issue 53`_.