From 522d826eca80b5bdabd45ba415227d6f6121ccba Mon Sep 17 00:00:00 2001 From: Cosimo Lupo Date: Sat, 31 Dec 2016 13:33:24 +0100 Subject: [PATCH] tox.ini: require coverage>=4.3 Coverage 4.3 was released, it includes this patch: https://bitbucket.org/ned/coveragepy/pull-requests/118/check-source-isdir-not-just-exists-there/diff --- tox.ini | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/tox.ini b/tox.ini index 5ccdd2093..1302c4963 100644 --- a/tox.ini +++ b/tox.ini @@ -9,9 +9,7 @@ basepython = py35: {env:TOXPYTHON:python3.5} py36: {env:TOXPYTHON:python3.6} deps = - # we install coverage from source until 4.3 is released, because of this: - # https://bitbucket.org/ned/coveragepy/pull-requests/118/check-source-isdir-not-just-exists-there/diff - cov: hg+https://bitbucket.org/ned/coveragepy#egg=coverage + cov: coverage>=4.3 pytest -rrequirements.txt install_command = @@ -27,7 +25,7 @@ commands = [testenv:htmlcov] basepython = {env:TOXPYTHON:python3.5} deps = - hg+https://bitbucket.org/ned/coveragepy#egg=coverage + coverage>=4.3 skip_install = true commands = coverage combine @@ -37,7 +35,7 @@ commands = passenv = * basepython = {env:TOXPYTHON:python} deps = - hg+https://bitbucket.org/ned/coveragepy#egg=coverage + coverage>=4.3 codecov skip_install = true ignore_outcome = true