Merge "delete python bytecode including pyo before every test run"

This commit is contained in:
Jenkins 2016-09-20 15:12:23 +00:00 committed by Gerrit Code Review
commit cbb58baada
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ whitelist_externals = find
deps = -r{toxinidir}/requirements.txt
-r{toxinidir}/test-requirements.txt
commands =
find . -type f -name "*.pyc" -delete
find . -type f -name "*.py[c|o]" -delete
ostestr {posargs}
[testenv:releasenotes]