From b7180e3cd91496c5fbd77dc110f5ef0b783cee51 Mon Sep 17 00:00:00 2001 From: Alexander Krasnukhin Date: Tue, 3 Feb 2015 22:37:46 +0100 Subject: [PATCH] Use sphinx-build as it is more Windows friendly. * Use sphinx-build * User should not read tox.ini in order to understand how to use it, so use html as default output format. * Kept same output dir for html just in case. --- tox.ini | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tox.ini b/tox.ini index b0ecc41906..348b090cc1 100644 --- a/tox.ini +++ b/tox.ini @@ -31,10 +31,8 @@ deps = autopep8 commands = autopep8 --ignore E309,E501 -a -i -r luigi test examples bin [testenv:docs] -# to call this use `tox -e docs -- html` deps = sqlalchemy Sphinx sphinx_rtd_theme -changedir = doc -commands = /usr/bin/make {posargs} +commands = sphinx-build -b html -d {envtmpdir}/doctrees doc doc/_build/html