diff options
author | Justin Lecher <jlec@gentoo.org> | 2015-09-22 09:02:24 +0200 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2015-09-22 09:02:31 +0200 |
commit | 2baf048fd2653ae2d179285eb391df98e31ea135 (patch) | |
tree | 51762079afd7289fe8a5679c25da8f20f834e033 /dev-python/pytest-cov | |
parent | dev-python/pytz: Version Bump (diff) | |
download | gentoo-2baf048fd2653ae2d179285eb391df98e31ea135.tar.gz gentoo-2baf048fd2653ae2d179285eb391df98e31ea135.tar.bz2 gentoo-2baf048fd2653ae2d179285eb391df98e31ea135.zip |
dev-python/pytest-cov: Drop restriction on dev version
Package-Manager: portage-2.2.21
Signed-off-by: Justin Lecher <jlec@gentoo.org>
Diffstat (limited to 'dev-python/pytest-cov')
-rw-r--r-- | dev-python/pytest-cov/pytest-cov-2.1.0.ebuild | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/dev-python/pytest-cov/pytest-cov-2.1.0.ebuild b/dev-python/pytest-cov/pytest-cov-2.1.0.ebuild index 05fe3675c4c9..e424459e2284 100644 --- a/dev-python/pytest-cov/pytest-cov-2.1.0.ebuild +++ b/dev-python/pytest-cov/pytest-cov-2.1.0.ebuild @@ -8,7 +8,7 @@ PYTHON_COMPAT=( python{2_7,3_{3,4}} pypy pypy3 ) inherit distutils-r1 DESCRIPTION="py.test plugin for coverage reporting" -HOMEPAGE="https://bitbucket.org/memedough/pytest-cov/overview" +HOMEPAGE="https://github.com/pytest-dev/pytest-cov https://pypi.python.org/pypi/pytest-cov" SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="MIT" @@ -20,8 +20,7 @@ RDEPEND=" >=dev-python/py-1.4.22[${PYTHON_USEDEP}] >=dev-python/pytest-2.6.0[${PYTHON_USEDEP}] >=dev-python/cov-core-1.14.0[${PYTHON_USEDEP}] - >=dev-python/coverage-3.7.1[${PYTHON_USEDEP}] - <dev-python/coverage-4[${PYTHON_USEDEP}]" + >=dev-python/coverage-3.7.1[${PYTHON_USEDEP}]" DEPEND=" dev-python/setuptools[${PYTHON_USEDEP}] test? ( @@ -34,5 +33,5 @@ DEPEND=" python_test() { PYTHONPATH="${S}/tests:${BUILD_DIR}/lib" \ - py.test -vv || die + py.test -p pytest_cov -vvx || die } |