summaryrefslogtreecommitdiff
path: root/doc/excluding.rst
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2011-06-04 21:26:33 -0400
committerNed Batchelder <ned@nedbatchelder.com>2011-06-04 21:26:33 -0400
commit6132f31eaee8ac3e597df8fb9134f4ddf41422f6 (patch)
treef684e59d9dfd42b5ada1e863299555c349b6a5bb /doc/excluding.rst
parent15626edd35cc39ac28a76cda37144d30e8ac655a (diff)
downloadpython-coveragepy-6132f31eaee8ac3e597df8fb9134f4ddf41422f6.tar.gz
Update the docs for 3.5 changes.
Diffstat (limited to 'doc/excluding.rst')
-rw-r--r--doc/excluding.rst6
1 files changed, 5 insertions, 1 deletions
diff --git a/doc/excluding.rst b/doc/excluding.rst
index 466f56a..9a3b5e7 100644
--- a/doc/excluding.rst
+++ b/doc/excluding.rst
@@ -7,6 +7,7 @@ Excluding code from coverage
:history: 20090613T090500, brand new docs.
:history: 20100224T200900, updated for 3.3.
:history: 20100725T211700, updated for 3.4.
+:history: 20110604T184400, updated for 3.5.
You may have code in your project that you know won't be executed, and you want
@@ -76,7 +77,7 @@ all of them by adding a regex to the exclusion list::
[report]
exclude_lines = def __repr__
-Here's a list of exclusions I've used::
+For example, here's a list of exclusions I've used::
[report]
exclude_lines =
@@ -93,6 +94,9 @@ Note that when using the ``exclude_lines`` option in a configuration file, you
are taking control of the entire list of regexes, so you need to re-specify the
default "pragma: no cover" match if you still want it to apply.
+A similar pragma, "no partial", can be used to tailor branch coverage
+measurement. See :ref:`branch` for details.
+
Excluding source files
----------------------