diff options
3 files changed, 33 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 20ca2763c6..ce5ccf22d5 100644 --- a/meta-python/conf/include/ptest-packagelists-meta-python.inc +++ b/meta-python/conf/include/ptest-packagelists-meta-python.inc | |||
| @@ -80,6 +80,7 @@ PTESTS_SLOW_META_PYTHON = "\ | |||
| 80 | python3-arrow \ | 80 | python3-arrow \ |
| 81 | python3-lz4 \ | 81 | python3-lz4 \ |
| 82 | python3-marshmallow \ | 82 | python3-marshmallow \ |
| 83 | python3-pytest-localserver \ | ||
| 83 | python3-traitlets \ | 84 | python3-traitlets \ |
| 84 | python3-yappi \ | 85 | python3-yappi \ |
| 85 | " | 86 | " |
diff --git a/meta-python/recipes-devtools/python/python3-pytest-localserver/run-ptest b/meta-python/recipes-devtools/python/python3-pytest-localserver/run-ptest new file mode 100644 index 0000000000..8d2017d39c --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-pytest-localserver/run-ptest | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | #!/bin/sh | ||
| 2 | |||
| 3 | pytest --automake | ||
diff --git a/meta-python/recipes-devtools/python/python3-pytest-localserver_0.8.1.bb b/meta-python/recipes-devtools/python/python3-pytest-localserver_0.8.1.bb new file mode 100644 index 0000000000..669817829d --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-pytest-localserver_0.8.1.bb | |||
| @@ -0,0 +1,29 @@ | |||
| 1 | SUMMARY = "pytest plugin to test server connections locally." | ||
| 2 | HOMEPAGE = "https://github.com/pytest-dev/pytest-localserver" | ||
| 3 | LICENSE = "MIT" | ||
| 4 | LIC_FILES_CHKSUM = "file://LICENSE;md5=b8da7a541d738b054dcbf70c31530432" | ||
| 5 | |||
| 6 | DEPENDS += "python3-setuptools-scm-native" | ||
| 7 | |||
| 8 | inherit pypi python_setuptools_build_meta ptest | ||
| 9 | |||
| 10 | SRC_URI[sha256sum] = "66569c34fef31a5750b16effd1cd1288a7a90b59155d005e7f916accd3dee4f1" | ||
| 11 | |||
| 12 | SRC_URI += " \ | ||
| 13 | file://run-ptest \ | ||
| 14 | " | ||
| 15 | |||
| 16 | RDEPENDS:${PN}-ptest += " \ | ||
| 17 | python3-pytest \ | ||
| 18 | python3-requests \ | ||
| 19 | python3-unittest-automake-output \ | ||
| 20 | " | ||
| 21 | |||
| 22 | do_install_ptest() { | ||
| 23 | install -d ${D}${PTEST_PATH}/tests | ||
| 24 | cp -rf ${S}/tests/* ${D}${PTEST_PATH}/tests/ | ||
| 25 | } | ||
| 26 | |||
| 27 | RDEPENDS:${PN} += " \ | ||
| 28 | python3-werkzeug \ | ||
| 29 | " | ||
