blob: d4b5496c26b64bc4a2d1a863479b13fe8d60c19c [file] [log] [blame]
# Copyright 2014 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
"""binary_size presubmit script
See http://dev.chromium.org/developers/how-tos/depottools/presubmit-scripts
for more details about the presubmit API built into depot_tools.
"""
USE_PYTHON3 = True
def CommonChecks(input_api, output_api):
output = []
# These tools don't run on Windows so these tests don't work and give many
# verbose and cryptic failure messages. Linting the code is also skipped on
# Windows because it will fail due to OS differences.
if input_api.sys.platform != 'win32':
output.extend(
input_api.canned_checks.RunPylint(input_api, output_api, version='2.6'))
py_tests = input_api.canned_checks.GetUnitTestsRecursively(
input_api,
output_api,
input_api.PresubmitLocalPath(),
files_to_check=[r'.+_test\.py$'],
files_to_skip=[],
run_on_python2=False,
run_on_python3=True,
skip_shebang_check=True)
output.extend(input_api.RunTests(py_tests, False))
output.extend(
input_api.canned_checks.CheckPatchFormatted(input_api,
output_api,
check_js=True))
return output
def CheckChangeOnUpload(input_api, output_api):
return CommonChecks(input_api, output_api)
def CheckChangeOnCommit(input_api, output_api):
return CommonChecks(input_api, output_api)