diff options
author | Zachary Ware <zachary.ware@gmail.com> | 2017-03-27 03:54:45 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-27 03:54:45 (GMT) |
commit | c2492ddd7c9797f94c85988ce7a86320d4ebfb59 (patch) | |
tree | 52f3fd21749fbd30127eefb2e352ad60577d925a | |
parent | 8ce3085bf167b702989a9db466078b5676e825e3 (diff) | |
download | cpython-c2492ddd7c9797f94c85988ce7a86320d4ebfb59.zip cpython-c2492ddd7c9797f94c85988ce7a86320d4ebfb59.tar.gz cpython-c2492ddd7c9797f94c85988ce7a86320d4ebfb59.tar.bz2 |
Treat Sphinx warnings as errors (GH-832) (GH-835)
(cherry picked from commit 334e9ec938ea9876baadef15edb135d6d2aff30c)
-rw-r--r-- | .travis.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 66f03dc..3496a1a 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 |