From 6968dbddec70dc05db778fba171867e5323152aa Mon Sep 17 00:00:00 2001 From: Denis Laxalde Date: Fri, 12 Feb 2021 14:06:00 +0100 Subject: [PATCH] Add a tox environment to build the docs --- tox.ini | 7 +++++++ 1 file changed, 7 insertions(+) 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 -- 2.47.2