Merge "Add delete *.pyc command before executing ostestr"

This commit is contained in:
Jenkins 2015-12-01 17:35:59 +00:00 committed by Gerrit Code Review
commit 39d0c08dc9

View File

@ -8,9 +8,12 @@ usedevelop = True
install_command = pip install -U {opts} {packages}
setenv =
VIRTUAL_ENV={envdir}
whitelist_externals = find
deps = -r{toxinidir}/requirements.txt
-r{toxinidir}/test-requirements.txt
commands = ostestr {posargs}
commands =
find . -type f -name "*.pyc" -delete
ostestr {posargs}
[testenv:pep8]
commands = flake8