diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2017-02-11 00:26:07 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-11 00:26:07 (GMT) |
commit | 0d5f11061a873e9fb67ae59e46b3313e5ba22fc3 (patch) | |
tree | e624495efae24bcefb25abda4bf9f815554b2d36 /.travis.yml | |
parent | 79ab8be05fb4ffb5c258d2ca49be5fc2d4880431 (diff) | |
download | cpython-0d5f11061a873e9fb67ae59e46b3313e5ba22fc3.zip cpython-0d5f11061a873e9fb67ae59e46b3313e5ba22fc3.tar.gz cpython-0d5f11061a873e9fb67ae59e46b3313e5ba22fc3.tar.bz2 |
Don't treat warnings as error in Travis docs job (#7)
bpo-29527.
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index af0f28d..515cc8f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -33,7 +33,7 @@ matrix: - cd Doc - make venv PYTHON=python3 script: - - make html SPHINXBUILD="./venv/bin/python3 -m sphinx" SPHINXOPTS="-nW -q -b linkcheck" + - make html SPHINXBUILD="./venv/bin/python3 -m sphinx" SPHINXOPTS="-n -q -b linkcheck" - os: linux language: c compiler: clang |