From f663c96bd89106a186b8cabc852c20b39f5f26fe Mon Sep 17 00:00:00 2001 From: Sam Doran Date: Wed, 27 Oct 2021 17:44:02 -0400 Subject: [PATCH] Update tox configuration to match RTD docs build Keep the build type as html, though, for easier local navigation. --- tox.ini | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index ce9115f66..1e6829918 100644 --- a/tox.ini +++ b/tox.ini @@ -27,5 +27,6 @@ commands= [testenv:docs] description = Build documentation deps = -r{toxinidir}/docs/requirements.txt +skip_install = True commands = - sphinx-build -E -W -d docs/build/doctrees -b html docs docs/build/html + sphinx-build -T -E -W --keep-going {tty:--color} -d docs/build/doctrees -b html docs docs/build/html