Checks common to both upload and commit.
(input_api, output_api)
| 17 | |
| 18 | |
| 19 | def _CommonChecks(input_api, output_api): |
| 20 | """Checks common to both upload and commit.""" |
| 21 | checks = [ |
| 22 | _RunTests, |
| 23 | ] |
| 24 | |
| 25 | return sum([check(input_api, output_api) for check in checks], []) |
| 26 | |
| 27 | def CheckChangeOnCommit(input_api, output_api): |
| 28 | return _CommonChecks(input_api, output_api) |
no test coverage detected
searching dependent graphs…