Merge "Delete python bytecode file"

This commit is contained in:
Jenkins 2016-11-30 12:31:12 +00:00 committed by Gerrit Code Review
commit efe1913e5d
1 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,7 @@ install_command = pip install -U {opts} {packages}
deps = -r{toxinidir}/requirements.txt
whitelist_externals = find
commands =
find . -type f -name "*.pyc" -delete
find . -type f -name "*.py[c|o]" -delete
python setup.py testr --slowest --testr-args='{posargs}'
[testenv:venv]
@ -21,7 +21,7 @@ commands = {posargs}
[testenv:docs]
commands =
find . -type f -name "*.pyc" -delete
find . -type f -name "*.py[c|o]" -delete
python setup.py build_sphinx
[testenv:pep8]