mirror of
https://git.yoctoproject.org/poky
synced 2026-01-29 21:08:42 +01:00
Changelog: ============ -A warning :class:'~pluggy.PluggyTeardownRaisedWarning' is now issued when an old-style hookwrapper raises an exception during teardown. See the warning documentation for more details. -Add :func:'PluginManager.unblock <pluggy.PluginManager.unblock>' method to unblock a plugin by plugin name. -Fix :func:'~pluggy.HookCaller.call_extra()' extra methods getting ordered before everything else in some circumstances. Regressed in pluggy 1.1.0. -Fix plugins registering other plugins in a hook when the other plugins implement the same hook itself. Regressed in pluggy 1.1.0. (From OE-Core rev: 1bc326d5228e90bd3cd19d7f3f10b2f74a39d06e) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
30 lines
769 B
BlitzBasic
30 lines
769 B
BlitzBasic
SUMMARY = "Plugin and hook calling mechanisms for python"
|
|
HOMEPAGE = "https://github.com/pytest-dev/pluggy"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=1c8206d16fd5cc02fa9b0bb98955e5c2"
|
|
|
|
SRC_URI[sha256sum] = "8c85c2876142a764e5b7548e7d9a0e0ddb46f5185161049a79b7e974454223be"
|
|
|
|
DEPENDS += "${PYTHON_PN}-setuptools-scm-native"
|
|
RDEPENDS:${PN} += "${PYTHON_PN}-importlib-metadata \
|
|
${PYTHON_PN}-more-itertools \
|
|
"
|
|
|
|
inherit pypi ptest python_setuptools_build_meta
|
|
|
|
SRC_URI += " \
|
|
file://run-ptest \
|
|
"
|
|
|
|
RDEPENDS:${PN}-ptest += " \
|
|
${PYTHON_PN}-pytest \
|
|
${PYTHON_PN}-unittest-automake-output \
|
|
"
|
|
|
|
do_install_ptest() {
|
|
install -d ${D}${PTEST_PATH}/testing
|
|
cp -rf ${S}/testing/* ${D}${PTEST_PATH}/testing/
|
|
}
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|