summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorMichael Howitz <mh@gocept.com>2020-11-23 08:41:58 +0100
committerGitHub <noreply@github.com>2020-11-23 08:41:58 +0100
commitb9512cfad5ac506aa076a2e7a42adee118194b11 (patch)
tree3f3d2a291d8ef3da1d9618545eb543bdf2457ab4 /tox.ini
parent58cd6273365fd9f66951b7c51f7c5ac111700c4f (diff)
downloadzope-browser-b9512cfad5ac506aa076a2e7a42adee118194b11.tar.gz
Test creating documentation (#13)
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini11
1 files changed, 10 insertions, 1 deletions
diff --git a/tox.ini b/tox.ini
index a586b68..8180767 100644
--- a/tox.ini
+++ b/tox.ini
@@ -11,6 +11,7 @@ envlist =
py39,
pypy,
pypy3,
+ docs,
coverage
[testenv]
@@ -19,7 +20,8 @@ deps =
zope.testrunner
commands =
zope-testrunner --test-path=src []
-extras = test
+extras =
+ test
[testenv:lint]
basepython = python3
@@ -33,6 +35,13 @@ commands =
check-manifest
check-python-versions
+[testenv:docs]
+basepython = python3
+extras =
+ docs
+commands =
+ sphinx-build -b html -d docs/_build/doctrees docs docs/_build/html
+
[testenv:coverage]
basepython = python3
deps =