diff options
| author | Tom Geelen <t.f.g.geelen@gmail.com> | 2025-11-25 00:43:01 +0100 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2025-11-24 21:54:47 -0800 |
| commit | d56cd727c73a53627827080f664b31cfa19581fb (patch) | |
| tree | bb78e397bd43daf5c95d5812950d81502217a8a0 | |
| parent | e730ee0c603df293ebe9218b8b9d79f8e617dd87 (diff) | |
| download | meta-openembedded-d56cd727c73a53627827080f664b31cfa19581fb.tar.gz | |
Sends responses to httpx.
Signed-off-by: Tom Geelen <t.f.g.geelen@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
3 files changed, 26 insertions, 0 deletions
diff --git a/meta-python/conf/include/ptest-packagelists-meta-python.inc b/meta-python/conf/include/ptest-packagelists-meta-python.inc index ad179ccf56..a172f8c676 100644 --- a/meta-python/conf/include/ptest-packagelists-meta-python.inc +++ b/meta-python/conf/include/ptest-packagelists-meta-python.inc | |||
| @@ -74,6 +74,7 @@ PTESTS_FAST_META_PYTHON = "\ | |||
| 74 | python3-pyasyncore \ | 74 | python3-pyasyncore \ |
| 75 | python3-pyroute2 \ | 75 | python3-pyroute2 \ |
| 76 | python3-pyserial \ | 76 | python3-pyserial \ |
| 77 | python3-pytest-httpx \ | ||
| 77 | python3-pytest-mock \ | 78 | python3-pytest-mock \ |
| 78 | python3-pytest-sugar \ | 79 | python3-pytest-sugar \ |
| 79 | python3-pytoml \ | 80 | python3-pytoml \ |
diff --git a/meta-python/recipes-core/packagegroups/packagegroup-meta-python.bb b/meta-python/recipes-core/packagegroups/packagegroup-meta-python.bb index 9b06096d1d..ad68d74205 100644 --- a/meta-python/recipes-core/packagegroups/packagegroup-meta-python.bb +++ b/meta-python/recipes-core/packagegroups/packagegroup-meta-python.bb | |||
| @@ -348,6 +348,7 @@ RDEPENDS:packagegroup-meta-python3 = "\ | |||
| 348 | python3-pytest-forked \ | 348 | python3-pytest-forked \ |
| 349 | python3-pytest-helpers-namespace \ | 349 | python3-pytest-helpers-namespace \ |
| 350 | python3-pytest-html \ | 350 | python3-pytest-html \ |
| 351 | python3-pytest-httpx \ | ||
| 351 | python3-pytest-lazy-fixtures \ | 352 | python3-pytest-lazy-fixtures \ |
| 352 | python3-pytest-metadata \ | 353 | python3-pytest-metadata \ |
| 353 | python3-pytest-tempdir \ | 354 | python3-pytest-tempdir \ |
diff --git a/meta-python/recipes-devtools/python/python3-pytest-httpx_0.35.0.bb b/meta-python/recipes-devtools/python/python3-pytest-httpx_0.35.0.bb new file mode 100644 index 0000000000..a419f8841e --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-pytest-httpx_0.35.0.bb | |||
| @@ -0,0 +1,24 @@ | |||
| 1 | SUMMARY = "Send responses to httpx." | ||
| 2 | HOMEPAGE = "https://github.com/Colin-b/pytest_httpx" | ||
| 3 | LICENSE = "MIT" | ||
| 4 | LIC_FILES_CHKSUM = "file://LICENSE;md5=80d06bde9296c367ea063b11e9518842" | ||
| 5 | RECIPE_MAINTAINER = "Tom Geelen <t.f.g.geelen@gmail.com>" | ||
| 6 | |||
| 7 | SRC_URI[sha256sum] = "d619ad5d2e67734abfbb224c3d9025d64795d4b8711116b1a13f72a251ae511f" | ||
| 8 | |||
| 9 | inherit pypi python_setuptools_build_meta ptest-python-pytest | ||
| 10 | |||
| 11 | DEPENDS += "python3-setuptools-scm-native" | ||
| 12 | |||
| 13 | RDEPENDS:${PN} += "\ | ||
| 14 | python3-httpx (>=0.28) \ | ||
| 15 | python3-pytest (>=8) \ | ||
| 16 | " | ||
| 17 | |||
| 18 | RDEPENDS:${PN}-ptest += "\ | ||
| 19 | python3-pytest-cov \ | ||
| 20 | python3-pytest-asyncio \ | ||
| 21 | " | ||
| 22 | |||
| 23 | PYPI_PACKAGE = "pytest_httpx" | ||
| 24 | UPSTREAM_CHECK_PYPI_PACKAGE = "${PYPI_PACKAGE}" | ||
