"""Top-level presubmit script for python_utils.
See http://dev.chromium.org/developers/how-tos/depottools/presubmit-scripts
for more details on the presubmit API built into depot_tools.
"""
PRESUBMIT_VERSION = '2.0.0'
def CheckChange(input_api, output_api):
if input_api.is_windows:
return []
"""Presubmit checks to run on upload and on commit of a CL."""
files_to_skip = []
if input_api.change.scm != 'git':
files_to_skip.append('.+git_metadata_utils_unittest\.py$')
checks = input_api.canned_checks.GetUnitTestsRecursively(
input_api,
output_api,
input_api.PresubmitLocalPath(),
files_to_check=[r'.+_unittest\.py$'],
files_to_skip=files_to_skip)
return input_api.RunTests(checks, False)