Delete python bytecode file

This patch delete python bytecode including
pyo before every test run

Change-Id: I720dc8dcac2f291ae394b9d673ca62d38bad5b64
This commit is contained in:
gecong1973 2016-10-12 14:30:07 +08:00
parent aa4424c95e
commit 1cfdac6453
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ deps = -r{toxinidir}/requirements.txt
whitelist_externals = bash
find
commands =
find . -type f -name "*.pyc" -delete
find . -type f -name "*.py[c|o]" -delete
nosetests
[testenv:pep8]