From: Denis Laxalde Date: Fri, 12 Feb 2021 13:06:00 +0000 (+0100) Subject: Add a tox environment to build the docs X-Git-Tag: 3.0.dev0~111^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F33%2Fhead;p=thirdparty%2Fpsycopg.git Add a tox environment to build the docs --- diff --git a/tox.ini b/tox.ini index c0c0a2b2b..68a953ea8 100644 --- a/tox.ini +++ b/tox.ini @@ -17,6 +17,13 @@ commands = mypy deps = mypy >= 0.800 skip_install = true +[testenv:docs] +commands = sphinx-build -W -T -b html docs docs/_build/html +deps = + ./psycopg3 + -r docs/requirements.txt +skip_install = true + [flake8] max-line-length = 85 ignore = W503, E203