[Python-checkins] devguide: Issue #21400: Update the code coverage section to remove out-of-date

ned.deily python-checkins at python.org
Tue Apr 14 00:50:52 CEST 2015


https://hg.python.org/devguide/rev/24536e980c9e
changeset:   740:24536e980c9e
user:        Ned Deily <nad at acm.org>
date:        Mon Apr 13 15:50:32 2015 -0700
summary:
  Issue #21400: Update the code coverage section to remove out-of-date
references.  Patch by Heather McCartney.

files:
  coverage.rst |  15 ++++-----------
  1 files changed, 4 insertions(+), 11 deletions(-)


diff --git a/coverage.rst b/coverage.rst
--- a/coverage.rst
+++ b/coverage.rst
@@ -20,22 +20,15 @@
 
 Choosing what module you want to increase test coverage for can be done in a
 couple of ways.
-A third-party website at http://coverage.livinglogic.de/ provides an
-overall view of how good coverage is for various modules (you will want to
-focus on those in the ``Lib`` directory as those are the pure Python modules
-from Python's stdlib, and thus easier to work with than the C extension
-modules). But since this is a third-party site we cannot promise that it will
-always be accessible or have useful information (i.e., be working properly).
+You can simply run the entire test suite yourself with coverage turned
+on and see what modules need help. This has the drawback of running the entire
+test suite under coverage measuring which takes some time to complete, but you
+will have an accurate, up-to-date notion of what modules need the most work.
 
 Another is to follow the examples below and simply see what
 coverage your favorite module has. This is "stabbing in the dark", though, and
 so it might take some time to find a module that needs coverage help.
 
-Finally, you can simply run the entire test suite yourself with coverage turned
-on and see what modules need help. This has the drawback of running the entire
-test suite under coverage measuring which takes some time to complete, but you
-will have an accurate, up-to-date notion of what modules need the most work.
-
 Do make sure, though, that for any module you do decide to work on that you run
 coverage for just that module. This will make sure you know how good the
 explicit coverage of the module is from its own set of tests instead of from

-- 
Repository URL: https://hg.python.org/devguide


More information about the Python-checkins mailing list