Delete python bytecode before every test run

Change-Id: Iedd09052c59d09a3272ddc4e6527ebfef7e8a655
Closes-Bug: #1368661
This commit is contained in:
sonu.kumar 2015-12-11 09:49:53 +05:30
parent 7b24396a9e
commit e25224631b
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}'
[tox:jenkins]