From e8d04ccaa3fe9f09d50e20fd47e0c26773819c86 Mon Sep 17 00:00:00 2001 From: Steve Piercy Date: Tue, 27 Nov 2018 03:32:07 -0800 Subject: Add docs environment to tox. Build via `tox -e docs`. Closes #9 --- tox.ini | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 42469da..55e85c9 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,6 @@ [tox] -envlist = py27, py34, py35, py36, py37, pypy, pypy3 +envlist = py27, py34, py35, py36, py37, pypy, pypy3, + docs [testenv] usedevelop = True @@ -10,3 +11,12 @@ deps = pytest-cov commands = py.test {posargs} + +[testenv:docs] +# pin to 3.5 to match what RTD uses +basepython = python3.5 +whitelist_externals = make +commands = + make -C docs html epub BUILDDIR={envdir} "SPHINXOPTS=-W -E" +extras = + docs -- cgit v1.2.1