From d85735d1b2de7858f24c01795aa188d18745a9cf Mon Sep 17 00:00:00 2001 From: Stephen Finucane Date: Mon, 18 Jun 2018 12:32:20 +0100 Subject: [PATCH] tox: Fix typo This was introduced in change I87b30273. While we're here, we also start passing positional arguments to 'sphinx-build' so we can configure it somewhat dynamically. Change-Id: I766da57377cd2ddb0a82419e36eeec1046309948 --- tox.ini | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tox.ini b/tox.ini index a7ea819e..0f650ea8 100644 --- a/tox.ini +++ b/tox.ini @@ -45,8 +45,8 @@ basepython = python3 whitelist_externals = rm deps = -r{toxinidir}/doc/requirements.txt commands = - rm -fr doc/builds - sphinx-build -W -b html doc/source doc/build/html + rm -fr doc/build + sphinx-build -W -b html doc/source doc/build/html {posargs} [testenv:bandit] basepython = python3