Merge "Fix coverage test configuration"

This commit is contained in:
Jenkins 2016-11-18 13:32:21 +00:00 committed by Gerrit Code Review
commit 047b6fca4e
1 changed files with 4 additions and 1 deletions

View File

@ -25,7 +25,10 @@ commands = flake8 {posargs}
commands = {posargs}
[testenv:cover]
commands = python setup.py test --coverage --testr-args='{posargs}'
commands =
coverage erase
find . -type f -name "*.pyc" -delete
python setup.py testr --coverage --testr-args='{posargs}'
[testenv:docs]
commands = python setup.py build_sphinx