Index: tools/auto_bisect/PRESUBMIT.py |
diff --git a/tools/auto_bisect/PRESUBMIT.py b/tools/auto_bisect/PRESUBMIT.py |
index 20ea62f0d25916e8c20304d68ec957f04bbc6750..c06c8259658bd06fff5d4f89fdd2452a90472b6e 100644 |
--- a/tools/auto_bisect/PRESUBMIT.py |
+++ b/tools/auto_bisect/PRESUBMIT.py |
@@ -86,5 +86,8 @@ def _RunUnitTests(input_api, output_api): |
def _RunPyLint(input_api, output_api): |
"""Runs unit tests for auto-bisect.""" |
- tests = input_api.canned_checks.GetPylint(input_api, output_api) |
+ telemetry_path = os.path.join( |
+ input_api.PresubmitLocalPath(), os.path.pardir, 'telemetry') |
+ tests = input_api.canned_checks.GetPylint( |
+ input_api, output_api, extra_paths_list=[telemetry_path]) |
return input_api.RunTests(tests) |