Delete python bytecode before every test run

Change-Id: Ib9f62857ea5c7375c47f1a72a941af306501d4fe
Closes-Bug: #1368661
This commit is contained in:
sonu.kumar 2015-12-09 12:41:00 +05:30
parent 7dcb033d5b
commit 1cbe797f6c
1 changed files with 4 additions and 1 deletions

View File

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