2
0
mirror of https://github.com/gentoo-mirror/gentoo.git synced 2026-01-19 00:09:37 +03:00
Files
gentoo/dev-python/pytest-cov/pytest-cov-6.1.0.ebuild
Arthur Zamarin 81ee7548bc dev-python/pytest-cov: add 6.1.0
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
2025-04-01 21:31:42 +03:00

57 lines
1.5 KiB
Bash

# 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_{10..13} pypy3 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/py-1.4.22[${PYTHON_USEDEP}]
>=dev-python/pytest-3.6[${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/pytest-xdist[${PYTHON_USEDEP}]
dev-python/virtualenv[${PYTHON_USEDEP}]
)
"
distutils_enable_sphinx docs \
dev-python/furo
EPYTEST_XDIST=1
distutils_enable_tests pytest
python_test() {
# NB: disabling all plugins speeds tests up a lot
local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
local -x PYTEST_PLUGINS=pytest_cov.plugin,xdist.plugin,xdist.looponfail
# https://github.com/pytest-dev/pytest-cov/issues/517
local -x PYTHONPATH=$(python_get_sitedir):${PYTHONPATH}
local EPYTEST_DESELECT=(
# this one's broken by the PYTHONPATH hack
# the alternative is to symlink coverage and pytest into venv,
# but that's ugly and likely to break again in the future
tests/test_pytest_cov.py::test_central_subprocess_change_cwd_with_pythonpath
)
epytest
}