Home | History | Annotate | Download | only in tld_cleanup

Lines Matching refs:input_api

9 def _RunMakeDafsaTests(input_api, output_api):
13 if not any(f in input_api.LocalPaths() for f in files):
15 test_path = input_api.os_path.join(input_api.PresubmitLocalPath(),
18 cmd = [input_api.python_executable, test_path]
19 test_cmd = input_api.Command(
24 return input_api.RunTests([test_cmd])
27 def CheckChangeOnUpload(input_api, output_api):
28 return _RunMakeDafsaTests(input_api, output_api)
31 def CheckChangeOnCommit(input_api, output_api):
32 return _RunMakeDafsaTests(input_api, output_api)