OLD | NEW |
(Empty) | |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. |
| 4 |
| 5 import subprocess |
| 6 |
| 7 def _CheckSphinxBuild(input_api, output_api): |
| 8 """Check that the docs are buildable without any warnings. |
| 9 |
| 10 This check runs sphinx-build with -W so that warning are errors. |
| 11 """ |
| 12 |
| 13 try: |
| 14 subprocess.check_output(['make', 'SPHINXOPTS=-Wa']) |
| 15 except subprocess.CalledProcessError as e: |
| 16 return [output_api.PresubmitPromptError('sphinx_build failed:\n' + |
| 17 e.output)] |
| 18 |
| 19 return [] |
| 20 |
| 21 |
| 22 def CommonChecks(input_api, output_api): |
| 23 output = [] |
| 24 output.extend(_CheckSphinxBuild(input_api, output_api)) |
| 25 return output |
| 26 |
| 27 |
| 28 def CheckChangeOnUpload(input_api, output_api): |
| 29 return CommonChecks(input_api, output_api) |
| 30 |
| 31 |
| 32 def CheckChangeOnCommit(input_api, output_api): |
| 33 return CommonChecks(input_api, output_api) |
OLD | NEW |