summaryrefslogtreecommitdiffstats
path: root/tools/auto_bisect/PRESUBMIT.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/auto_bisect/PRESUBMIT.py')
-rw-r--r--tools/auto_bisect/PRESUBMIT.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/auto_bisect/PRESUBMIT.py b/tools/auto_bisect/PRESUBMIT.py
index 1e99787..380cb00 100644
--- a/tools/auto_bisect/PRESUBMIT.py
+++ b/tools/auto_bisect/PRESUBMIT.py
@@ -18,6 +18,7 @@ CONFIG_FILES = [
os.path.join(os.path.pardir, 'run-perf-test.cfg'),
]
+
def CheckChangeOnUpload(input_api, output_api):
return _CommonChecks(input_api, output_api)
@@ -93,7 +94,7 @@ def _RunPyLint(input_api, output_api):
'third_party', 'pymock')
disabled_warnings = [
'relative-import',
- ]
+ ]
tests = input_api.canned_checks.GetPylint(
input_api, output_api, disabled_warnings=disabled_warnings,
extra_paths_list=[telemetry_path, mock_path])