Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1410)

Unified Diff: third_party/coverage-3.7.1/doc/excluding.rst

Issue 225633007: Upgrade to coverage 3.7.1 and have it auto-build itself on first use. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: sigh our imports are a mess Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/coverage-3.7.1/doc/contributing.rst ('k') | third_party/coverage-3.7.1/doc/faq.rst » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/coverage-3.7.1/doc/excluding.rst
diff --git a/third_party/coverage-3.6/doc/excluding.rst b/third_party/coverage-3.7.1/doc/excluding.rst
similarity index 94%
rename from third_party/coverage-3.6/doc/excluding.rst
rename to third_party/coverage-3.7.1/doc/excluding.rst
index f1262c35fcfc42fbc291884c1c503aac8f78069c..31e8e9baa2d3e8afcde521fcf8e98ba117d05ea3 100644
--- a/third_party/coverage-3.6/doc/excluding.rst
+++ b/third_party/coverage-3.7.1/doc/excluding.rst
@@ -39,8 +39,8 @@ function is not reported as missing::
return "<MyObject>"
Excluded code is executed as usual, and its execution is recorded in the
-coverage data as usual. When producing reports though, coverage excludes it from
-the list of missing code.
+coverage data as usual. When producing reports though, coverage excludes it
+from the list of missing code.
Branch coverage
@@ -57,8 +57,8 @@ counted as a branch if one of its choices is excluded::
# x is always true.
blah3()
-Because the ``else`` clause is excluded, the ``if`` only has one possible
-next line, so it isn't considered a branch at all.
+Because the ``else`` clause is excluded, the ``if`` only has one possible next
+line, so it isn't considered a branch at all.
Advanced exclusion
@@ -70,8 +70,8 @@ expressions. Using :ref:`configuration files <config>` or the coverage
often-used constructs to exclude that can be matched with a regex. You can
exclude them all at once without littering your code with exclusion pragmas.
-For example, you might decide that __repr__ functions are usually only used
-in debugging code, and are uninteresting to test themselves. You could exclude
+For example, you might decide that __repr__ functions are usually only used in
+debugging code, and are uninteresting to test themselves. You could exclude
all of them by adding a regex to the exclusion list::
[report]
« no previous file with comments | « third_party/coverage-3.7.1/doc/contributing.rst ('k') | third_party/coverage-3.7.1/doc/faq.rst » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698