commit: 596cc99bd2d4df1260b8aa6d89be2b1eac748879
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Sep 10 05:23:23 2025 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Sep 10 06:04:27 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=596cc99b
dev-python/pytest-cov: Bump to 7.0.0
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/pytest-cov/Manifest | 1 +
dev-python/pytest-cov/pytest-cov-7.0.0.ebuild | 70 +++++++++++++++++++++++++++
2 files changed, 71 insertions(+)
diff --git a/dev-python/pytest-cov/Manifest b/dev-python/pytest-cov/Manifest
index 38875bf5d502..d717fdc2c007 100644
--- a/dev-python/pytest-cov/Manifest
+++ b/dev-python/pytest-cov/Manifest
@@ -1,2 +1,3 @@
DIST pytest_cov-6.2.0.tar.gz 68872 BLAKE2B
2d1b011885db80497a3de6cda907b2d7e9ed6b4f5cdbe7da7e5d824ffc95c47d0603885deb227698c8536c77c98ceb8604c8bc00ac7a5aec73c867c6efad1a37
SHA512
11d4916b2a826981845b93944737813e2683a48e36cfe9c4a2a1b5a3f4009f8a3e87d1606636fdaf813dffc017bd5a81fd1769bbaca5ce360e1e89f51130c934
DIST pytest_cov-6.3.0.tar.gz 70398 BLAKE2B
8082e94bf2430122f07dcf07c423f2cb4d4c41c1383baad36a6b89a1bb350f30dd8f53ad66efcb56f998d7e35d553fc0f1f41d47bf149cecca13b813100f8b2a
SHA512
163b13aae0e335c7158614411f6ae2dc259b0c9de09e324ee909dc07992c2ee45b81e850bd13a0e00bf211af1a5262ef6cc2883c883b739a2be2e0efef5aee7c
+DIST pytest_cov-7.0.0.tar.gz 54328 BLAKE2B
e4c3e01a2a7f09bbbf53889d984e835d40d50ed89616f43027ecdffc299a5f917f6cdcaf76b87053e687f39d5eca951d8bf3602d1cf1ac214017cf7074b5163b
SHA512
6a3822209b139b06f175e20549f997c532d1c1d9bc79fa3fdff9dca8ea870a110cf75056ddfb68fc447018033bd223c0de492be9a8c756a02739b70d3f2772a7
diff --git a/dev-python/pytest-cov/pytest-cov-7.0.0.ebuild
b/dev-python/pytest-cov/pytest-cov-7.0.0.ebuild
new file mode 100644
index 000000000000..eb9876911d83
--- /dev/null
+++ b/dev-python/pytest-cov/pytest-cov-7.0.0.ebuild
@@ -0,0 +1,70 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=hatchling
+PYTHON_COMPAT=( python3_{11..14} pypy3_11 )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="pytest plugin for coverage reporting"
+HOMEPAGE="
+ https://github.com/pytest-dev/pytest-cov/
+ https://pypi.org/project/pytest-cov/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv
~s390 ~sparc ~x86"
+
+RDEPEND="
+ >=dev-python/coverage-7.10.6[${PYTHON_USEDEP}]
+ >=dev-python/pluggy-1.2[${PYTHON_USEDEP}]
+ >=dev-python/pytest-7[${PYTHON_USEDEP}]
+"
+# NB: xdist is also used directly in the test suite
+BDEPEND="
+ dev-python/hatch-fancy-pypi-readme[${PYTHON_USEDEP}]
+ test? (
+ dev-python/fields[${PYTHON_USEDEP}]
+ >=dev-python/process-tests-2.0.2[${PYTHON_USEDEP}]
+ >=dev-python/py-1.4.22[${PYTHON_USEDEP}]
+ dev-python/virtualenv[${PYTHON_USEDEP}]
+ )
+"
+
+distutils_enable_sphinx docs \
+ dev-python/furo
+
+EPYTEST_PLUGIN_LOAD_VIA_ENV=1
+EPYTEST_PLUGINS=( "${PN}" pytest-xdist )
+EPYTEST_RERUNS=5
+EPYTEST_XDIST=1
+distutils_enable_tests pytest
+
+python_test() {
+ # https://github.com/pytest-dev/pytest-cov/issues/517
+ local sitedir="$(python_get_sitedir)"
+ local -x
PYTHONPATH="${BUILD_DIR}/install${sitedir}:${BROOT}${sitedir#${EPREFIX}}:${PYTHONPATH}"
+ local -x PYTHONUSERBASE=/usr
+
+ local EPYTEST_DESELECT=(
+ # no celery in ::gentoo
+ tests/test_pytest_cov.py::test_celery
+ # TODO
+ tests/test_pytest_cov.py::test_filterwarnings_error
+ )
+
+ case ${EPYTHON} in
+ python3.14*)
+ EPYTEST_DESELECT+=(
+ #
https://github.com/pytest-dev/pytest-cov/issues/719
+ # (skipped previously)
+ tests/test_pytest_cov.py::test_contexts
+ )
+ ;;
+ esac
+
+ epytest
+}