diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2017-02-13 14:30:05 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-13 14:30:05 (GMT) |
commit | 2b501866ed493758e4c4b29f0ce9b24023d910a1 (patch) | |
tree | e9220e382de69fb999bd010de2e50be3b64aebc8 /.travis.yml | |
parent | 3d707be950b387552585451071928e7b39cdfa53 (diff) | |
download | cpython-2b501866ed493758e4c4b29f0ce9b24023d910a1.zip cpython-2b501866ed493758e4c4b29f0ce9b24023d910a1.tar.gz cpython-2b501866ed493758e4c4b29f0ce9b24023d910a1.tar.bz2 |
Travis CI: run rstlint.py in the docs job (#68)
Currently, http://buildbot.python.org/all/buildslaves/ware-docs
buildbot is only run as post-commit. For example, bpo-29521 (PR#41)
introduced two warnings, unnotified by the Travis CI docs job.
Modify the docs job to run toosl/rstlint.py.
Fix also the two minor warnings which causes the buildbot slave to
fail.
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index 1066e5f..90d19d3 100644 --- a/.travis.yml +++ b/.travis.yml @@ -34,6 +34,7 @@ matrix: - make venv PYTHON=python3 script: - make html SPHINXBUILD="./venv/bin/python3 -m sphinx" SPHINXOPTS="-q" + - python3 tools/rstlint.py -i tools -i venv - os: linux language: c compiler: clang |