summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/catapult/catapult_build/run_with_typ.py
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/catapult/catapult_build/run_with_typ.py')
-rw-r--r--chromium/third_party/catapult/catapult_build/run_with_typ.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/chromium/third_party/catapult/catapult_build/run_with_typ.py b/chromium/third_party/catapult/catapult_build/run_with_typ.py
index 543e4a2008a..c27448bec41 100644
--- a/chromium/third_party/catapult/catapult_build/run_with_typ.py
+++ b/chromium/third_party/catapult/catapult_build/run_with_typ.py
@@ -24,12 +24,13 @@ def Run(top_level_dir, path=None, suffixes=None, **kwargs):
typ_path = os.path.abspath(os.path.join(
os.path.dirname(__file__), os.path.pardir, 'third_party', 'typ'))
_AddToPathIfNeeded(typ_path)
- import typ
+ import typ # pylint: disable=import-outside-toplevel
return typ.main(
top_level_dir=top_level_dir,
path=(path or []),
coverage_source=[top_level_dir],
suffixes=suffixes,
+ coverage=True,
**kwargs)