diff mbox series

[meta-python,1/2] python3-rarfile: Enable tests

Message ID 20260710212823.1567516-1-leon.anavi@konsulko.com
State Under Review
Headers show
Series [meta-python,1/2] python3-rarfile: Enable tests | expand

Commit Message

Leon Anavi July 10, 2026, 9:28 p.m. UTC
Inherit ptest, include tests for rarfile and run the relevant
test cases.

This work was sponsored by GOVCERT.LU.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 .../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 mbox series

Patch

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"