]> granicus.if.org Git - python/commitdiff
Travis CI: run rstlint.py in the docs job (#68)
authorVictor Stinner <victor.stinner@gmail.com>
Mon, 13 Feb 2017 14:30:05 +0000 (15:30 +0100)
committerGitHub <noreply@github.com>
Mon, 13 Feb 2017 14:30:05 +0000 (15:30 +0100)
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.

.travis.yml
Doc/faq/windows.rst

index 1066e5fb1450be6b9aa5c8d357f3cdd66803d2c3..90d19d3dea4f1c6d9d3c7f586f09f5bf4a75ba8a 100644 (file)
@@ -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
index b9b7b8d359bdf24db5151d6672a4080d879b60fa..6ac83e45d2e8152083d49ee933ac8804ed8af920 100644 (file)
@@ -300,9 +300,9 @@ this respect, and is easily configured to use spaces: Take :menuselection:`Tools
 --> Options --> Tabs`, and for file type "Default" set "Tab size" and "Indent
 size" to 4, and select the "Insert spaces" radio button.
 
-Python raises :exc:`IndentationError` or :exc:`TabError` if mixed tabs 
+Python raises :exc:`IndentationError` or :exc:`TabError` if mixed tabs
 and spaces are causing problems in leading whitespace.
-You may also run the :mod:`tabnanny` module to check a directory tree 
+You may also run the :mod:`tabnanny` module to check a directory tree
 in batch mode.