mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-02-28 06:50:51 +00:00
Changelog: =========== * When using 'assert_all_requests_are_fired=True', assertions about unfired requests are now raised even when an exception occurs in the context manager or decorated function. Previously, these assertions were suppressed when exceptions occurred. This new behavior provides valuable debugging context about which mocked requests were or weren't called. * Consider the 'Retry-After' header when handling retries Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
16 lines
457 B
BlitzBasic
16 lines
457 B
BlitzBasic
DESCRIPTION = "A utility library for mocking out the requests Python library."
|
|
HOMEPAGE = "https://github.com/getsentry/responses"
|
|
LICENSE = "Apache-2.0"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=0e601511a8517f4daf688a8eb95be7a2"
|
|
|
|
inherit pypi python_setuptools_build_meta
|
|
|
|
SRC_URI[sha256sum] = "c7f6923e6343ef3682816ba421c006626777893cb0d5e1434f674b649bac9eb4"
|
|
|
|
RDEPENDS:${PN} += " \
|
|
python3-mock \
|
|
python3-pyyaml \
|
|
python3-requests \
|
|
python3-urllib3 \
|
|
"
|