1# Copyright (C) 2017 The Android Open Source Project 2# 3# Licensed under the Apache License, Version 2.0 (the "License"); 4# you may not use this file except in compliance with the License. 5# You may obtain a copy of the License at 6# 7# http://www.apache.org/licenses/LICENSE-2.0 8# 9# Unless required by applicable law or agreed to in writing, software 10# distributed under the License is distributed on an "AS IS" BASIS, 11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12# See the License for the specific language governing permissions and 13# limitations under the License. 14 15# This line is 'magic' in that git-cl looks for it to decide whether to 16# use Python3 instead of Python2 when running the code in this file. 17USE_PYTHON3 = True 18 19 20def CommonChecks(input_api, output_api): 21 recipes_py = input_api.os_path.join(input_api.PresubmitLocalPath(), 22 'recipes.py') 23 return input_api.RunTests([ 24 input_api.Command( 25 'Run recipe tests', 26 ['python3', recipes_py, 'test', 'run'], 27 {}, 28 output_api.PresubmitError, 29 ) 30 ]) 31 32 33def CheckChangeOnUpload(input_api, output_api): 34 return CommonChecks(input_api, output_api) 35 36 37def CheckChangeOnCommit(input_api, output_api): 38 return CommonChecks(input_api, output_api) 39