Fix an error of tox -ecover

When we used tox -ecover, an error occurred about
'coverage-package-name'. This patch fixes it with changing the argument
of setup.py.

Change-Id: I419683f2474ce37a1df82b611c8637c0c76c9df7
This commit is contained in:
Masayuki Igawa
2015-03-25 09:31:31 -04:00
parent 426d031f4c
commit 8d3b72f9fb

View File

@@ -20,7 +20,7 @@ commands = flake8
commands = {posargs}
[testenv:cover]
commands = python setup.py testr --coverage --coverage-package-name='tempest_lib' --testr-args='{posargs}'
commands = python setup.py test --coverage --coverage-package-name='tempest_lib' --testr-args='{posargs}'
[testenv:docs]
commands = python setup.py build_sphinx