# Template file for 'python3-pytest-cov' pkgname=python3-pytest-cov version=4.1.0 revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel" 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 " 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=3904b13dfbfec47f003b8e77fd5b589cd11904a21ddf1ab38a64f204d6a10ef6 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} } post_install() { vlicense LICENSE }