summaryrefslogtreecommitdiff
path: root/dev-python/pytest-cov/pytest-cov-6.3.0.ebuild
diff options
context:
space:
mode:
Diffstat (limited to 'dev-python/pytest-cov/pytest-cov-6.3.0.ebuild')
-rw-r--r--dev-python/pytest-cov/pytest-cov-6.3.0.ebuild56
1 files changed, 56 insertions, 0 deletions
diff --git a/dev-python/pytest-cov/pytest-cov-6.3.0.ebuild b/dev-python/pytest-cov/pytest-cov-6.3.0.ebuild
new file mode 100644
index 000000000000..d83dcd7fbd56
--- /dev/null
+++ b/dev-python/pytest-cov/pytest-cov-6.3.0.ebuild
@@ -0,0 +1,56 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{9,10,11,12,13} pypy3 )
+
+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/pluggy-1.2[${PYTHON_USEDEP}]
+ >=dev-python/pytest-6.2.5[${PYTHON_USEDEP}]
+ >=dev-python/coverage-6.4.4-r1[${PYTHON_USEDEP}]
+"
+# NB: xdist is also used directly in the test suite
+BDEPEND="
+ 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_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=(
+ # TODO
+ tests/test_pytest_cov.py::test_filterwarnings_error
+ )
+
+ epytest
+}