Clearing out .pyc file before a tox run

Change-Id: I8d6ff9c2d29f0a3429d3e7bdffd4bd97f8024b3c
This commit is contained in:
sonu.kumar 2015-11-18 14:32:54 +05:30
parent bdaf48116c
commit 7d5c1ecff8

View File

@ -12,7 +12,11 @@ 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]