# Template file for 'python3-pytest-cov'
pkgname=python3-pytest-cov
version=5.0.0
revision=2
build_style=python3-pep517
# this test fails with python3-coverage >= 7.6
make_check_args="
 --deselect tests/test_pytest_cov.py::test_term_report_does_not_interact_with_html_output"
hostmakedepends="python3-setuptools"
depends="python3-pytest python3-coverage"
checkdepends="$depends python3-fields python3-process-tests
 python3-pytest-xdist python3-virtualenv"
short_desc="Pytest plugin for measuring coverage"
maintainer="Piotr Wójcik <chocimier@tlen.pl>"
license="MIT"
homepage="https://pytest-cov.readthedocs.io/en/latest/"
changelog="https://raw.githubusercontent.com/pytest-dev/pytest-cov/master/CHANGELOG.rst"
distfiles="${PYPI_SITE}/p/pytest-cov/pytest-cov-${version}.tar.gz"
checksum=5837b58e9f6ebd335b0f8060eecce69b662415b16dc503883a02f45dfeb14857

do_check() {
	# Running via PYTHONPATH breaks a few tests so we use a venv
	local testdir="${wrksrc}/.xbps-testdir/$(date +%s)"
	python3 -m venv --system-site-packages --without-pip "${testdir}"

	local testpy="${testdir}/bin/python3"
	"${testpy}" -m installer dist/*.whl
	# coverage needs to be installed inside venv
	# see: https://github.com/pytest-dev/pytest-cov/issues/517
	ln -s /${py3_sitelib}/coverage ${testdir}${py3_sitelib#usr}
	PATH="${testdir}/bin:${PATH}" "${testpy}" -m pytest -n ${XBPS_MAKEJOBS} \
		${make_check_args} ${make_check_target}
}

post_install() {
	vlicense LICENSE
}
