From 6efa693f2a273a68b7173bc990f439f28f748cdd Mon Sep 17 00:00:00 2001 From: Andreas Jaeger Date: Thu, 6 Dec 2018 08:36:43 +0100 Subject: [PATCH] Fix sphinx invocation We use now "tox -e docs" and the sphinx-build invocation was using the wrong directory - fix it. Also, add doctrees option. Change-Id: I527a08565cdc876dc862f1a944de06eddb7c33c9 --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 55e1bf2..61db5d9 100644 --- a/tox.ini +++ b/tox.ini @@ -19,4 +19,4 @@ commands = {posargs} [testenv:docs] commands = doc8 -e .rst specs/ doc/ README.rst - sphinx-build -W -b html doc/source doc/build + sphinx-build -W -b html -d doc/build/doctrees doc/source doc/build/html