Merge "Remove 'pyc' files before running tests"

This commit is contained in:
Jenkins
2015-06-09 18:13:24 +00:00
committed by Gerrit Code Review

View File

@@ -13,7 +13,9 @@ deps = -r{toxinidir}/requirements.txt
-r{toxinidir}/test-requirements.txt
install_command = pip install -U {opts} {packages}
usedevelop = True
commands = python setup.py testr --slowest --testr-args='{posargs}'
commands =
find . -type f -name "*.pyc" -delete
python setup.py testr --slowest --testr-args='{posargs}'
distribute = false
basepython = python2.7