mirror of
https://git.yoctoproject.org/poky
synced 2026-01-30 13:28:43 +01:00
Improvements ------------ * Add support for Python 3.10 and 3.11. * Drop support for Python 3.5 (EOL). * Distutils integration is deprecated and will be removed in the next major version. * Use "CompoundFixture" from "fixtures>=2.0" rather than rolling our own. * Provide a "testtools[twisted]" extra documenting dependencies needed for "testtools.twistedsupport". * Make "TestCase" hashable. * Prevent "AttributeError" in "TestCase.__eq__" for objects lacking a "__dict__" attribute. * Replace deprecated "cgi" module usage with "email". (From OE-Core rev: c0d0428deabf519e86bc0ffb7ff47e9bb0a165c4) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
28 lines
639 B
PHP
28 lines
639 B
PHP
SUMMARY = "Extensions to the Python standard library unit testing framework"
|
|
HOMEPAGE = "https://pypi.org/project/testtools/"
|
|
SECTION = "devel/python"
|
|
LICENSE = "Apache-2.0"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=e2c9d3e8ba7141c83bfef190e0b9379a"
|
|
|
|
inherit pypi
|
|
|
|
SRC_URI[sha256sum] = "28b65e14c0f2d3ecbbfb5f55c9dcde5e4faa80ac16a37a823909a1fe3cbcb30a"
|
|
|
|
DEPENDS += " \
|
|
${PYTHON_PN}-pbr \
|
|
"
|
|
|
|
# Satisfy setup.py 'setup_requires'
|
|
DEPENDS += " \
|
|
${PYTHON_PN}-pbr-native \
|
|
"
|
|
|
|
RDEPENDS:${PN} += "\
|
|
${PYTHON_PN}-doctest \
|
|
${PYTHON_PN}-extras \
|
|
${PYTHON_PN}-pbr \
|
|
${PYTHON_PN}-six \
|
|
"
|
|
|
|
BBCLASSEXTEND = "nativesdk"
|