add 'tox -e docs', travis job to exercise it

This commit is contained in:
Brian Warner 2019-05-05 18:02:00 -04:00
parent cedf549ccd
commit 49ab25ff34
2 changed files with 12 additions and 0 deletions

View File

@ -31,5 +31,9 @@ matrix:
- python: 3.6
script: tox -e flake8less
env: FLAKE8
- python: 3.7
dist: xenial
script: tox -e docs
env: DOCS
allow_failures:
- python: nightly

View File

@ -44,3 +44,11 @@ max-complexity = 40
[testenv:flake8less]
deps = flake8
commands = flake8 --select=E901,E999,F821,F822,F823 src/wormhole
[testenv:docs]
deps =
sphinx
recommonmark
skip_install = True
commands =
sphinx-build -b html -d {toxinidir}/docs/_build/doctrees {toxinidir}/docs {toxinidir}/docs/_build/html