Gentoo Archives: gentoo-commits

From: Justin Lecher <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pytest-cov/
Date: Tue, 22 Sep 2015 07:02:40
Message-Id: 1442905351.2baf048fd2653ae2d179285eb391df98e31ea135.jlec@gentoo
1 commit: 2baf048fd2653ae2d179285eb391df98e31ea135
2 Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
3 AuthorDate: Tue Sep 22 07:02:24 2015 +0000
4 Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
5 CommitDate: Tue Sep 22 07:02:31 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2baf048f
7
8 dev-python/pytest-cov: Drop restriction on dev version
9
10 Package-Manager: portage-2.2.21
11 Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
12
13 dev-python/pytest-cov/pytest-cov-2.1.0.ebuild | 7 +++----
14 1 file changed, 3 insertions(+), 4 deletions(-)
15
16 diff --git a/dev-python/pytest-cov/pytest-cov-2.1.0.ebuild b/dev-python/pytest-cov/pytest-cov-2.1.0.ebuild
17 index 05fe367..e424459 100644
18 --- a/dev-python/pytest-cov/pytest-cov-2.1.0.ebuild
19 +++ b/dev-python/pytest-cov/pytest-cov-2.1.0.ebuild
20 @@ -8,7 +8,7 @@ PYTHON_COMPAT=( python{2_7,3_{3,4}} pypy pypy3 )
21 inherit distutils-r1
22
23 DESCRIPTION="py.test plugin for coverage reporting"
24 -HOMEPAGE="https://bitbucket.org/memedough/pytest-cov/overview"
25 +HOMEPAGE="https://github.com/pytest-dev/pytest-cov https://pypi.python.org/pypi/pytest-cov"
26 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
27
28 LICENSE="MIT"
29 @@ -20,8 +20,7 @@ RDEPEND="
30 >=dev-python/py-1.4.22[${PYTHON_USEDEP}]
31 >=dev-python/pytest-2.6.0[${PYTHON_USEDEP}]
32 >=dev-python/cov-core-1.14.0[${PYTHON_USEDEP}]
33 - >=dev-python/coverage-3.7.1[${PYTHON_USEDEP}]
34 - <dev-python/coverage-4[${PYTHON_USEDEP}]"
35 + >=dev-python/coverage-3.7.1[${PYTHON_USEDEP}]"
36 DEPEND="
37 dev-python/setuptools[${PYTHON_USEDEP}]
38 test? (
39 @@ -34,5 +33,5 @@ DEPEND="
40
41 python_test() {
42 PYTHONPATH="${S}/tests:${BUILD_DIR}/lib" \
43 - py.test -vv || die
44 + py.test -p pytest_cov -vvx || die
45 }