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

Unified Diff: third_party/coverage-3.7.1/coverage/config.py

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/coverage/collector.py ('k') | third_party/coverage-3.7.1/coverage/control.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/coverage-3.7.1/coverage/config.py
diff --git a/third_party/coverage-3.6/coverage/config.py b/third_party/coverage-3.7.1/coverage/config.py
similarity index 98%
rename from third_party/coverage-3.6/coverage/config.py
rename to third_party/coverage-3.7.1/coverage/config.py
index c2ebecb20e5fd26b9fca982390315770f7d17079..87318ff12452b6f0f833920f2cd1fd04e56b71d7 100644
--- a/third_party/coverage-3.6/coverage/config.py
+++ b/third_party/coverage-3.7.1/coverage/config.py
@@ -111,6 +111,7 @@ class CoverageConfig(object):
self.parallel = False
self.timid = False
self.source = None
+ self.debug = []
# Defaults for [report]
self.exclude_list = DEFAULT_EXCLUDE[:]
@@ -142,7 +143,7 @@ class CoverageConfig(object):
if env:
self.timid = ('--timid' in env)
- MUST_BE_LIST = ["omit", "include"]
+ MUST_BE_LIST = ["omit", "include", "debug"]
def from_args(self, **kwargs):
"""Read config values from `kwargs`."""
@@ -178,6 +179,7 @@ class CoverageConfig(object):
('branch', 'run:branch', 'boolean'),
('cover_pylib', 'run:cover_pylib', 'boolean'),
('data_file', 'run:data_file'),
+ ('debug', 'run:debug', 'list'),
('include', 'run:include', 'list'),
('omit', 'run:omit', 'list'),
('parallel', 'run:parallel', 'boolean'),
« no previous file with comments | « third_party/coverage-3.7.1/coverage/collector.py ('k') | third_party/coverage-3.7.1/coverage/control.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698