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: Sat, 01 Oct 2022 16:24:38
Message-Id: 1664639651.58368fd32c23c4facee8cfcbf99236ce4b51d94e.mgorny@gentoo
1 commit: 58368fd32c23c4facee8cfcbf99236ce4b51d94e
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Oct 1 15:15:22 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Oct 1 15:54:11 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=58368fd3
7
8 dev-python/pytest-cov: Bump to 4.0.0
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-4.0.0.ebuild | 61 +++++++++++++++++++++++++++
14 2 files changed, 62 insertions(+)
15
16 diff --git a/dev-python/pytest-cov/Manifest b/dev-python/pytest-cov/Manifest
17 index 3099cb0090e6..c4e0c945f72b 100644
18 --- a/dev-python/pytest-cov/Manifest
19 +++ b/dev-python/pytest-cov/Manifest
20 @@ -1 +1,2 @@
21 DIST pytest-cov-3.0.0.tar.gz 61440 BLAKE2B 85f0b079c4c373191553271e34e78af68ac69ea53e3721aa0d43eb9dd55be935570eb15c0f8b954e4c0de6201c004ddef435ea70b03cfda893ecdcc230c283e7 SHA512 289d1b1e29dcc3461276de4c1bbd3884e4ec957efb7dd4c330bc3f25f1b978cbee64c0e2882b419eee5f9ccf44c9d1a23ce47a1b7cc7e436b9ebe894e4c11ae8
22 +DIST pytest-cov-4.0.0.tar.gz 62013 BLAKE2B af8a12955e3f22cd9dc257874f86c04c3c6e29f4af2d2838f37ca196c4955dcf4007c7b404f31c303d0eef6c3735fa1a6268c3bb9f01ed54860750ca2f83b6f5 SHA512 fb993be4d86b29a44e4f2ccd2309d99ab9fe8e6b291abbc2a8a3fc8b36479491165a242a20bfa9886dfd296fcc827da9984b556fdbe9a3ac496ac5b6ba379012
23
24 diff --git a/dev-python/pytest-cov/pytest-cov-4.0.0.ebuild b/dev-python/pytest-cov/pytest-cov-4.0.0.ebuild
25 new file mode 100644
26 index 000000000000..00e9dce47cda
27 --- /dev/null
28 +++ b/dev-python/pytest-cov/pytest-cov-4.0.0.ebuild
29 @@ -0,0 +1,61 @@
30 +# Copyright 1999-2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +DISTUTILS_USE_PEP517=setuptools
36 +PYTHON_COMPAT=( python3_{8..10} pypy3 )
37 +
38 +inherit distutils-r1
39 +
40 +DESCRIPTION="pytest plugin for coverage reporting"
41 +HOMEPAGE="
42 + https://github.com/pytest-dev/pytest-cov/
43 + https://pypi.org/project/pytest-cov/
44 +"
45 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
46 +
47 +LICENSE="MIT"
48 +SLOT="0"
49 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
50 +
51 +RDEPEND="
52 + >=dev-python/py-1.4.22[${PYTHON_USEDEP}]
53 + >=dev-python/pytest-3.6[${PYTHON_USEDEP}]
54 + >=dev-python/coverage-4.4[${PYTHON_USEDEP}]
55 + dev-python/toml[${PYTHON_USEDEP}]
56 +"
57 +BDEPEND="
58 + test? (
59 + dev-python/virtualenv[${PYTHON_USEDEP}]
60 + dev-python/fields[${PYTHON_USEDEP}]
61 + >=dev-python/process-tests-2.0.2[${PYTHON_USEDEP}]
62 + dev-python/pytest-xdist[${PYTHON_USEDEP}]
63 + )
64 +"
65 +
66 +distutils_enable_sphinx docs \
67 + dev-python/sphinx-py3doc-enhanced-theme
68 +distutils_enable_tests pytest
69 +
70 +python_test() {
71 + # NB: disabling all plugins speeds tests up a lot
72 + local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
73 + local -x PYTEST_PLUGINS=pytest_cov.plugin,xdist.plugin,xdist.looponfail
74 +
75 + local EPYTEST_DESELECT=(
76 + # attempts to install packages via pip (network)
77 + tests/test_pytest_cov.py::test_dist_missing_data
78 + # TODO
79 + tests/test_pytest_cov.py::test_contexts
80 + )
81 +
82 + # TODO: why do we need to do that?!
83 + # https://github.com/pytest-dev/pytest-cov/issues/517
84 + ln -s "${BROOT}$(python_get_sitedir)/coverage" \
85 + "${BUILD_DIR}/install$(python_get_sitedir)/coverage" || die
86 +
87 + epytest
88 +
89 + rm "${BUILD_DIR}/install$(python_get_sitedir)/coverage" || die
90 +}