diff options
author | Zachary Ware <zachary.ware@gmail.com> | 2017-03-26 21:31:31 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-26 21:31:31 -0500 |
commit | 334e9ec938ea9876baadef15edb135d6d2aff30c (patch) | |
tree | e2d41af8ed2bcf99e4047dae959593be7b18a3d8 | |
parent | 0579e81f30d00da562f021760d5b6a9c35186520 (diff) | |
download | cpython-git-334e9ec938ea9876baadef15edb135d6d2aff30c.tar.gz |
Treat Sphinx warnings as errors (GH-832)
-rw-r--r-- | .travis.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 903950041a..8e99a383e0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -39,7 +39,7 @@ matrix: - cd Doc - make venv script: - - make check suspicious html PYTHON="./venv/bin/python" SPHINXBUILD="./venv/bin/python -m sphinx" SPHINXOPTS="-q" + - make check suspicious html PYTHON="./venv/bin/python" SPHINXBUILD="./venv/bin/python -m sphinx" SPHINXOPTS="-q -W" - os: linux language: c compiler: clang |