From 045811b0d2d3c96903325a801a8c73bdea1546ec Mon Sep 17 00:00:00 2001 From: Andreas Jaeger Date: Wed, 8 Apr 2020 11:30:56 +0200 Subject: [PATCH] Fix docs publishing This repo has been using the outdated pbr sphinx integration and thus Ic5d22bbc3d1ece72a7611e023d54d456f6f1a211 broke docs publishing. Use the new way of docs building everywhere with running sphinx-build to fix docs publishing. Change-Id: I839369ed9f61262d6f715ebaa491201218ff2d91 --- tox.ini | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index ef144e2e..9addc499 100644 --- a/tox.ini +++ b/tox.ini @@ -69,7 +69,8 @@ commands = commands = {posargs} [testenv:docs] -commands = python setup.py build_sphinx +commands = + sphinx-build -W -b html doc/source doc/build/html [testenv:pdf-docs] envdir = {toxworkdir}/docs