Merge "[Docs] Remove _build directory before main cmd"

This commit is contained in:
Jenkins 2016-01-06 17:40:04 +00:00 committed by Gerrit Code Review
commit e12ad46654

View File

@ -9,12 +9,15 @@ setenv = VIRTUAL_ENV={envdir}
LANGUAGE=en_US:en
LC_ALL=C
PYTHONHASHSEED=0
whitelist_externals = find
rm
make
deps = -r{toxinidir}/requirements.txt
-r{toxinidir}/test-requirements.txt
install_command = pip install -U {opts} {packages}
usedevelop = True
commands =
/usr/bin/find . -type f -name "*.pyc" -delete
find . -type f -name "*.pyc" -delete
python setup.py testr --slowest --testr-args='{posargs}'
distribute = false
basepython = python2.7
@ -41,7 +44,9 @@ commands = {toxinidir}/tests/ci/cover.sh {posargs}
[testenv:docs]
changedir = doc/source
commands = make html
commands =
rm -rf _build
make html
[testenv:genconfig]
commands =