Merge "Delete python bytecode before every test run"

This commit is contained in:
Jenkins 2015-12-10 09:55:48 +00:00 committed by Gerrit Code Review
commit d35304e5f3
1 changed files with 3 additions and 2 deletions

View File

@ -13,8 +13,9 @@ install_command = {toxinidir}/tools/tox_install.sh {opts} {packages}
deps = -r{toxinidir}/requirements.txt
-r{toxinidir}/test-requirements.txt
whitelist_externals = sh
commands =
sh tools/pretty_tox.sh '{posargs}'
find
commands = find . -type f -name "*.py[c|o]" -delete
sh tools/pretty_tox.sh '{posargs}'
[testenv:fullstack]
basepython = python2.7