[Docs] Remove _build directory before main cmd
`tox -edocs` doesn't work as expected if ./docs/source/_build dir exists. Change-Id: Ibe37590e0c9cbb1de06a488407bb9596120d87e7
This commit is contained in:
parent
f14374d9c2
commit
9326529aae
9
tox.ini
9
tox.ini
@ -9,12 +9,15 @@ setenv = VIRTUAL_ENV={envdir}
|
|||||||
LANGUAGE=en_US:en
|
LANGUAGE=en_US:en
|
||||||
LC_ALL=C
|
LC_ALL=C
|
||||||
PYTHONHASHSEED=0
|
PYTHONHASHSEED=0
|
||||||
|
whitelist_externals = find
|
||||||
|
rm
|
||||||
|
make
|
||||||
deps = -r{toxinidir}/requirements.txt
|
deps = -r{toxinidir}/requirements.txt
|
||||||
-r{toxinidir}/test-requirements.txt
|
-r{toxinidir}/test-requirements.txt
|
||||||
install_command = pip install -U {opts} {packages}
|
install_command = pip install -U {opts} {packages}
|
||||||
usedevelop = True
|
usedevelop = True
|
||||||
commands =
|
commands =
|
||||||
/usr/bin/find . -type f -name "*.pyc" -delete
|
find . -type f -name "*.pyc" -delete
|
||||||
python setup.py testr --slowest --testr-args='{posargs}'
|
python setup.py testr --slowest --testr-args='{posargs}'
|
||||||
distribute = false
|
distribute = false
|
||||||
basepython = python2.7
|
basepython = python2.7
|
||||||
@ -41,7 +44,9 @@ commands = {toxinidir}/tests/ci/cover.sh {posargs}
|
|||||||
|
|
||||||
[testenv:docs]
|
[testenv:docs]
|
||||||
changedir = doc/source
|
changedir = doc/source
|
||||||
commands = make html
|
commands =
|
||||||
|
rm -rf _build
|
||||||
|
make html
|
||||||
|
|
||||||
[testenv:genconfig]
|
[testenv:genconfig]
|
||||||
commands =
|
commands =
|
||||||
|
Loading…
Reference in New Issue
Block a user