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-python/traitlets/
Date: Mon, 15 Oct 2018 22:01:51
Message-Id: 1539640802.5d590585df78727d11580cb7613b426577c9fb89.vdupras@gentoo
1 commit: 5d590585df78727d11580cb7613b426577c9fb89
2 Author: Virgil Dupras <vdupras <AT> gentoo <DOT> org>
3 AuthorDate: Mon Oct 15 22:00:02 2018 +0000
4 Commit: Virgil Dupras <vdupras <AT> gentoo <DOT> org>
5 CommitDate: Mon Oct 15 22:00:02 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d590585
7
8 dev-python/traitlets: drop pytest-cov dep
9
10 We don't need to compute test coverage.
11
12 Signed-off-by: Virgil Dupras <vdupras <AT> gentoo.org>
13 Package-Manager: Portage-2.3.51, Repoman-2.3.11
14
15 dev-python/traitlets/traitlets-4.3.2.ebuild | 6 +++---
16 1 file changed, 3 insertions(+), 3 deletions(-)
17
18 diff --git a/dev-python/traitlets/traitlets-4.3.2.ebuild b/dev-python/traitlets/traitlets-4.3.2.ebuild
19 index 51bc865fd59..c9a8ea73a32 100644
20 --- a/dev-python/traitlets/traitlets-4.3.2.ebuild
21 +++ b/dev-python/traitlets/traitlets-4.3.2.ebuild
22 @@ -1,4 +1,4 @@
23 -# Copyright 1999-2018 Gentoo Foundation
24 +# Copyright 1999-2018 Gentoo Authors
25 # Distributed under the terms of the GNU General Public License v2
26
27 EAPI=6
28 @@ -29,7 +29,7 @@ DEPEND="
29 )
30 test? (
31 $(python_gen_cond_dep 'dev-python/mock[${PYTHON_USEDEP}]' 'python2*')
32 - dev-python/pytest-cov[${PYTHON_USEDEP}]
33 + dev-python/pytest[${PYTHON_USEDEP}]
34 )
35 "
36
37 @@ -50,5 +50,5 @@ python_compile_all() {
38 }
39
40 python_test() {
41 - py.test --cov traitlets -v traitlets || die
42 + pytest -vv traitlets || die
43 }