Merge "Delete python bytecode before every test run"

This commit is contained in:
Jenkins 2015-12-16 23:40:27 +00:00 committed by Gerrit Code Review
commit 82836e850f
1 changed files with 2 additions and 0 deletions

View File

@ -11,7 +11,9 @@ setenv = VIRTUAL_ENV={envdir}
LC_ALL=C
deps = -r{toxinidir}/requirements.txt
-r{toxinidir}/test-requirements.txt
whitelist_externals = find
commands =
find . -type f -name "*.pyc" -delete
python setup.py testr --testr-args='{posargs}'
[testenv:flake8]