From 8d3b72f9fb96fe8dadd319212cffcb1c71ccf90a Mon Sep 17 00:00:00 2001 From: Masayuki Igawa Date: Wed, 25 Mar 2015 09:31:31 -0400 Subject: 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 --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index d2de02c..b704ce4 100644 --- a/tox.ini +++ b/tox.ini @@ -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 -- cgit v1.2.1