Merge "delete python bytecode before every test run"

This commit is contained in:
Jenkins 2016-01-07 21:32:37 +00:00 committed by Gerrit Code Review
commit 2145c9bf5a
1 changed files with 4 additions and 1 deletions

View File

@ -13,7 +13,10 @@ setenv = VIRTUAL_ENV={envdir}
ZAQAR_TEST_SLOW=1
deps = -r{toxinidir}/requirements.txt
-r{toxinidir}/test-requirements.txt
commands = python setup.py testr --slowest --testr-args='--concurrency 1 {posargs}'
commands =
find . -type f -name "*.pyc" -delete
python setup.py testr --slowest --testr-args='--concurrency 1 {posargs}'
whitelist_externals = find
[testenv:pypy]
setenv = {[testenv]setenv}