meta-openembedded/meta-python/recipes-devtools/python/python3-pytest-cov_4.1.0.bb
Richard Leitner b56ab3d109
python3-pytest-cov: add missing python3-coverage dependency
As reported by "pip3 check" python3-pytest-cov depends on
python3-coverage:

	$ pip3 check
	pytest-cov 4.1.0 requires coverage, which is not installed.

This patch fixes this problem by adding python3-coverage to RDEPENDS

Signed-off-by: Richard Leitner <dev@g0hl1n.net>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2024-01-04 11:17:26 -08:00

16 lines
440 B
BlitzBasic

SUMMARY = "Pytest plugin for measuring coverage."
HOMEPAGE = "https://github.com/pytest-dev/pytest-cov"
LICENSE = "MIT"
LIC_FILES_CHKSUM = " \
file://LICENSE;md5=cbc4e25353c748c817db2daffe605e43 \
"
SRC_URI[sha256sum] = "3904b13dfbfec47f003b8e77fd5b589cd11904a21ddf1ab38a64f204d6a10ef6"
inherit pypi setuptools3
DEPENDS += "${PYTHON_PN}-setuptools-scm-native"
RDEPENDS:${PN} += "python3-coverage"
BBCLASSEXTEND = "native nativesdk"