From 35745c902eee8bbcf24da6fdd7139fc08513faeb Mon Sep 17 00:00:00 2001 From: Ivan Melnikov Date: Fri, 23 Jan 2015 14:14:53 +0300 Subject: [PATCH] Fix coverage environment To run coverage report we need 'coverage' package, which should be added to dependency list for corresponding tox environment. Change-Id: I546b5afb1501773351fc2233bb12858497970105 --- tox.ini | 1 + 1 file changed, 1 insertion(+) diff --git a/tox.ini b/tox.ini index a295abfd2..4ef1c3358 100644 --- a/tox.ini +++ b/tox.ini @@ -40,6 +40,7 @@ commands = pylint --rcfile=pylintrc taskflow [testenv:cover] basepython = python2.7 deps = {[testenv:py27]deps} + coverage>=3.6 commands = python setup.py testr --coverage --testr-args='{posargs}' [testenv:venv]