Inherit ptest, include tests for rarfile and run the relevant test cases. This work was sponsored by GOVCERT.LU.
Signed-off-by: Leon Anavi <[email protected]> --- .../python/python3-rarfile/run-ptest | 13 ++++++++++++ .../python/python3-rarfile_4.3.bb | 21 ++++++++++++++++--- 2 files changed, 31 insertions(+), 3 deletions(-) create mode 100644 meta-python/recipes-devtools/python/python3-rarfile/run-ptest diff --git a/meta-python/recipes-devtools/python/python3-rarfile/run-ptest b/meta-python/recipes-devtools/python/python3-rarfile/run-ptest new file mode 100644 index 0000000000..7cc4a1b1ae --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-rarfile/run-ptest @@ -0,0 +1,13 @@ +#!/bin/sh + +pytest --automake \ + --deselect "test/test_api.py::test_not_rar" \ + --deselect "test/test_extract.py::test_readonly[test/files/rar3-readonly-unix.rar]" \ + --deselect "test/test_extract.py::test_readonly[test/files/rar3-readonly-win.rar]" \ + --deselect "test/test_extract.py::test_readonly[test/files/rar5-readonly-unix.rar]" \ + --deselect "test/test_extract.py::test_readonly[test/files/rar5-readonly-win.rar]" \ + --deselect "test/test_reading.py::test_reading[test/files/rar15-comment-lock.rar]" \ + --deselect "test/test_reading.py::test_reading[test/files/rar15-comment.rar]" \ + --deselect "test/test_reading.py::test_reading[test/files/rar202-comment-nopsw.rar]" \ + --deselect "test/test_reading.py::test_reading[test/files/rar202-comment-psw.rar]" \ + --deselect "test/test_tool.py::test_unrar_tool" diff --git a/meta-python/recipes-devtools/python/python3-rarfile_4.3.bb b/meta-python/recipes-devtools/python/python3-rarfile_4.3.bb index f051e63b62..9fce84bc56 100644 --- a/meta-python/recipes-devtools/python/python3-rarfile_4.3.bb +++ b/meta-python/recipes-devtools/python/python3-rarfile_4.3.bb @@ -6,11 +6,11 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=1916695551f7eec48dfd97db9467b831" inherit setuptools3 -SRC_URI[sha256sum] = "0d8b5a7ffb9f8e9a7b002f2398905e4420c0cb373e799b48e48f418db9c8816a" +SRC_URI += "file://run-ptest" -inherit pypi +SRC_URI[sha256sum] = "0d8b5a7ffb9f8e9a7b002f2398905e4420c0cb373e799b48e48f418db9c8816a" -PYPI_PACKAGE = "rarfile" +inherit pypi ptest RDEPENDS:${PN} += "\ 7zip \ @@ -20,4 +20,19 @@ RDEPENDS:${PN} += "\ python3-io \ " +RDEPENDS:${PN}-ptest += " \ + python3-pytest \ + python3-core \ + python3-datetime \ + python3-crypt \ + python3-compression \ + python3-unittest \ + python3-unittest-automake-output \ +" + +do_install_ptest() { + install -d ${D}${PTEST_PATH}/test + cp -rf ${S}/test/* ${D}${PTEST_PATH}/test/ +} + BBCLASSEXTEND = "native nativesdk" -- 2.47.3
-=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#128131): https://lists.openembedded.org/g/openembedded-devel/message/128131 Mute This Topic: https://lists.openembedded.org/mt/120213839/21656 Group Owner: [email protected] Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
