Gentoo Archives: gentoo-commits

From: Virgil Dupras <vdupras@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/vint/
Date: Fri, 26 Oct 2018 01:18:03
Message-Id: 1540516651.6481782a4cc9edb88224b6e3771d8c25bb6f514a.vdupras@gentoo
1 commit: 6481782a4cc9edb88224b6e3771d8c25bb6f514a
2 Author: Virgil Dupras <vdupras <AT> gentoo <DOT> org>
3 AuthorDate: Fri Oct 26 01:17:31 2018 +0000
4 Commit: Virgil Dupras <vdupras <AT> gentoo <DOT> org>
5 CommitDate: Fri Oct 26 01:17:31 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6481782a
7
8 dev-util/vint: drop dev-python/pytest-cov dep
9
10 Test coverage counting is spurious in the context of gentoo testing. We
11 don't need that dep.
12
13 Bug: https://bugs.gentoo.org/662034
14 Signed-off-by: Virgil Dupras <vdupras <AT> gentoo.org>
15 Package-Manager: Portage-2.3.51, Repoman-2.3.11
16
17 dev-util/vint/vint-0.3.19.ebuild | 6 ++----
18 1 file changed, 2 insertions(+), 4 deletions(-)
19
20 diff --git a/dev-util/vint/vint-0.3.19.ebuild b/dev-util/vint/vint-0.3.19.ebuild
21 index 1e5cc17ad27..f4c45248021 100644
22 --- a/dev-util/vint/vint-0.3.19.ebuild
23 +++ b/dev-util/vint/vint-0.3.19.ebuild
24 @@ -1,4 +1,4 @@
25 -# Copyright 1999-2018 Gentoo Foundation
26 +# Copyright 1999-2018 Gentoo Authors
27 # Distributed under the terms of the GNU General Public License v2
28
29 EAPI=6
30 @@ -27,13 +27,11 @@ RDEPEND="
31 "
32 DEPEND="${RDEPEND}
33 test? (
34 - >=dev-python/coverage-3.7.1[${PYTHON_USEDEP}]
35 >=dev-python/pytest-3.3.2[${PYTHON_USEDEP}]
36 - >=dev-python/pytest-cov-2.5.1[${PYTHON_USEDEP}]
37 $(python_gen_cond_dep '>=dev-python/mock-1.0.1[${PYTHON_USEDEP}]' python2_7)
38 )
39 "
40
41 python_test() {
42 - py.test -v || die "Test suite failed with ${EPYTHON}"
43 + pytest -vv || die "Test suite failed with ${EPYTHON}"
44 }