summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorSteve Piercy <web@stevepiercy.com>2018-11-29 21:33:05 +0900
committerGitHub <noreply@github.com>2018-11-29 21:33:05 +0900
commit050bc4a2e75466caa33239ffeda0e4e74c69d1fd (patch)
tree2a657df0559dc5a16be8eb0d42b252d69299491b /tox.ini
parent6b672b39a05ec605bda28115ce922a6f449442a7 (diff)
parent55cea2c020827e28004f10a63f6b0fb6930b5ca1 (diff)
downloadpastedeploy-git-050bc4a2e75466caa33239ffeda0e4e74c69d1fd.tar.gz
Merge branch 'master' into setup-py-updatesetup-py-update
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini12
1 files changed, 11 insertions, 1 deletions
diff --git a/tox.ini b/tox.ini
index 9800db2..7819491 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]
deps =
@@ -9,3 +10,12 @@ deps =
pytest-cov
commands =
py.test --cov=paste/deploy --cov-report=xml --cov-report=html --cov-report=term-missing {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