Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pytest-cov/
Date: Tue, 01 Jun 2021 22:44:43
Message-Id: 1622587476.2697d6ad56fa354ebd34046aae06591c42989f64.mgorny@gentoo
1 commit: 2697d6ad56fa354ebd34046aae06591c42989f64
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jun 1 21:48:23 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Jun 1 22:44:36 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2697d6ad
7
8 dev-python/pytest-cov: Bump to 2.12.1
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/pytest-cov/Manifest | 1 +
13 dev-python/pytest-cov/pytest-cov-2.12.1.ebuild | 49 ++++++++++++++++++++++++++
14 2 files changed, 50 insertions(+)
15
16 diff --git a/dev-python/pytest-cov/Manifest b/dev-python/pytest-cov/Manifest
17 index 0d2d2dba61a..f68703be817 100644
18 --- a/dev-python/pytest-cov/Manifest
19 +++ b/dev-python/pytest-cov/Manifest
20 @@ -1,2 +1,3 @@
21 DIST pytest-cov-2.11.1.tar.gz 59143 BLAKE2B 21aeffbc9ccbe6a7c69a08fe3f0013204eb039c6dc9ddbb364a74ad10764e16ce7be0154e27beaab2c8f9b2a972131c4c2421c4aa4557efc18318556056a421b SHA512 19c465f5972ee0ee3b9a2f1a656fdf5457622cb449f73a6f707d377a617807dadda997a6875f0c081bc4c4f7039559c6e7ce820b818db42dfd053c016e1c3b4e
22 DIST pytest-cov-2.12.0.tar.gz 59596 BLAKE2B 6eef2c062b687899009fdf7b4ef8825b3eeabc7be09fac897315cb99acb9176d11bf0d7f3704108caac1bddc32d158b88ddc69a5bd4815c1877cc238684abc3d SHA512 fc94abd8c38ff4015bad4f9f23ee4691f376d436c16f4951021afadfb94dd359a46924d3c7c43dc3193641943f88e0eab04429aa57d26a65bc95622e512639e1
23 +DIST pytest-cov-2.12.1.tar.gz 60395 BLAKE2B 42e817c63c9d787de9bfaf804217a1e020d5a38e564df0ce2d43d6b4f0631aee43ccae329f44c6d7ac9a5662776463456d72138fd20c65cf8d0accfe118e1e2b SHA512 4c234178febeba1ce93ec0804c3efe181d5d88db9ac02effe14e62eb3b0f7ca1f8757fb4f360551e0d3e35a3b6207892afea85611a49db6c71a2dbaacabc5375
24
25 diff --git a/dev-python/pytest-cov/pytest-cov-2.12.1.ebuild b/dev-python/pytest-cov/pytest-cov-2.12.1.ebuild
26 new file mode 100644
27 index 00000000000..8763efa3ffa
28 --- /dev/null
29 +++ b/dev-python/pytest-cov/pytest-cov-2.12.1.ebuild
30 @@ -0,0 +1,49 @@
31 +# Copyright 1999-2021 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +PYTHON_COMPAT=( python3_{7..9} pypy3 )
37 +
38 +inherit distutils-r1
39 +
40 +DESCRIPTION="py.test plugin for coverage reporting"
41 +HOMEPAGE="https://github.com/pytest-dev/pytest-cov https://pypi.org/project/pytest-cov/"
42 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
43 +
44 +LICENSE="MIT"
45 +SLOT="0"
46 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
47 +IUSE="test"
48 +RESTRICT="!test? ( test )"
49 +
50 +RDEPEND="
51 + >=dev-python/py-1.4.22[${PYTHON_USEDEP}]
52 + >=dev-python/pytest-3.6[${PYTHON_USEDEP}]
53 + >=dev-python/coverage-4.4[${PYTHON_USEDEP}]
54 + dev-python/toml[${PYTHON_USEDEP}]
55 +"
56 +# TODO: figure out how to make tests work without pytest-cov installed
57 +# first
58 +BDEPEND="
59 + test? (
60 + ${RDEPEND}
61 + ~dev-python/pytest-cov-${PV}[${PYTHON_USEDEP}]
62 + dev-python/virtualenv[${PYTHON_USEDEP}]
63 + dev-python/fields[${PYTHON_USEDEP}]
64 + >=dev-python/process-tests-2.0.2[${PYTHON_USEDEP}]
65 + dev-python/pytest-xdist[${PYTHON_USEDEP}]
66 + )
67 +"
68 +
69 +distutils_enable_sphinx docs \
70 + dev-python/sphinx-py3doc-enhanced-theme
71 +
72 +python_test() {
73 + local deselect=(
74 + # attempts to install packages via pip (network)
75 + tests/test_pytest_cov.py::test_dist_missing_data
76 + )
77 +
78 + epytest ${deselect[@]/#/--deselect }
79 +}