diff options
Diffstat (limited to 'meta-python')
5 files changed, 29 insertions, 1 deletions
diff --git a/meta-python/conf/include/ptest-packagelists-meta-python.inc b/meta-python/conf/include/ptest-packagelists-meta-python.inc index b953ae2502..c62bfab034 100644 --- a/meta-python/conf/include/ptest-packagelists-meta-python.inc +++ b/meta-python/conf/include/ptest-packagelists-meta-python.inc | |||
@@ -72,6 +72,7 @@ PTESTS_FAST_META_PYTHON = "\ | |||
72 | python3-pyroute2 \ | 72 | python3-pyroute2 \ |
73 | python3-pyserial \ | 73 | python3-pyserial \ |
74 | python3-pytest-mock \ | 74 | python3-pytest-mock \ |
75 | python3-pytest-sugar \ | ||
75 | python3-pytoml \ | 76 | python3-pytoml \ |
76 | python3-pyyaml-include \ | 77 | python3-pyyaml-include \ |
77 | python3-pydbus \ | 78 | python3-pydbus \ |
diff --git a/meta-python/recipes-devtools/python/python3-pytest-sugar/run-ptest b/meta-python/recipes-devtools/python/python3-pytest-sugar/run-ptest new file mode 100644 index 0000000000..b4bf4b65d8 --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-pytest-sugar/run-ptest | |||
@@ -0,0 +1,3 @@ | |||
1 | #!/bin/sh | ||
2 | |||
3 | pytest -vv | sed -e 's/\[...%\]//g'| sed -e 's/PASSED/PASS/g'| sed -e 's/FAILED/FAIL/g'|sed -e 's/SKIPPED/SKIP/g'| awk '{if ($NF=="PASS" || $NF=="FAIL" || $NF=="SKIP" || $NF=="XFAIL" || $NF=="XPASS"){printf "%s: %s\n", $NF, $0}else{print}}'| awk '{if ($NF=="PASS" || $NF=="FAIL" || $NF=="SKIP" || $NF=="XFAIL" || $NF=="XPASS") {$NF="";print $0}else{print}}' | ||
diff --git a/meta-python/recipes-devtools/python/python3-pytest-sugar_1.0.0.bb b/meta-python/recipes-devtools/python/python3-pytest-sugar_1.0.0.bb new file mode 100644 index 0000000000..9ce29aef7e --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-pytest-sugar_1.0.0.bb | |||
@@ -0,0 +1,23 @@ | |||
1 | SUMMARY = "pytest-sugar is a plugin for pytest that changes the default look and feel of pytest (e.g. progressbar, show tests that fail instantly)." | ||
2 | HOMEPAGE = "https://github.com/Teemu/pytest-sugar" | ||
3 | LICENSE = "BSD-3-Clause" | ||
4 | LIC_FILES_CHKSUM = "file://LICENSE;md5=dfc31f3b2a6a301239a1ba99b71a9459" | ||
5 | |||
6 | SRC_URI += "file://run-ptest" | ||
7 | SRC_URI[sha256sum] = "6422e83258f5b0c04ce7c632176c7732cab5fdb909cb39cca5c9139f81276c0a" | ||
8 | |||
9 | inherit pypi python_poetry_core ptest-python-pytest | ||
10 | |||
11 | PACKAGECONFIG ?= "" | ||
12 | PACKAGECONFIG[dev] = ",,,python3-black python3-flake8 python3-pre-commit" | ||
13 | |||
14 | do_install_ptest:append() { | ||
15 | install -d ${D}${PTEST_PATH}/tests | ||
16 | cp -rf ${S}/test_sugar.py ${D}${PTEST_PATH}/tests/ | ||
17 | } | ||
18 | |||
19 | RDEPENDS:${PN} += "python3-packaging python3-pytest python3-termcolor \ | ||
20 | python3-core python3-packaging python3-pytest \ | ||
21 | python3-pytest-xdist" | ||
22 | |||
23 | RDEPENDS:${PN}-ptest += "python3-tox" | ||
diff --git a/meta-python/recipes-devtools/python/python3-typer_0.16.0.bb b/meta-python/recipes-devtools/python/python3-typer_0.16.0.bb index 87e258ae1f..5295d2213e 100644 --- a/meta-python/recipes-devtools/python/python3-typer_0.16.0.bb +++ b/meta-python/recipes-devtools/python/python3-typer_0.16.0.bb | |||
@@ -32,6 +32,7 @@ RDEPENDS:${PN}-ptest += "\ | |||
32 | python3-mypy \ | 32 | python3-mypy \ |
33 | python3-pytest \ | 33 | python3-pytest \ |
34 | python3-pytest-cov \ | 34 | python3-pytest-cov \ |
35 | python3-pytest-sugar \ | ||
35 | python3-pytest-xdist \ | 36 | python3-pytest-xdist \ |
36 | python3-rich \ | 37 | python3-rich \ |
37 | python3-shellingham \ | 38 | python3-shellingham \ |
diff --git a/meta-python/recipes-extended/python-blivet/python3-blivet_3.12.1.bb b/meta-python/recipes-extended/python-blivet/python3-blivet_3.12.1.bb index 6a00e48ebb..bf492b3d57 100644 --- a/meta-python/recipes-extended/python-blivet/python3-blivet_3.12.1.bb +++ b/meta-python/recipes-extended/python-blivet/python3-blivet_3.12.1.bb | |||
@@ -24,7 +24,7 @@ REQUIRED_DISTRO_FEATURES = "systemd" | |||
24 | 24 | ||
25 | RDEPENDS:${PN} += "python3-pykickstart python3-pyudev \ | 25 | RDEPENDS:${PN} += "python3-pykickstart python3-pyudev \ |
26 | parted python3-pyparted multipath-tools \ | 26 | parted python3-pyparted multipath-tools \ |
27 | lsof cryptsetup libblockdev \ | 27 | lsof cryptsetup libblockdev libblockdev-bin \ |
28 | libbytesize \ | 28 | libbytesize \ |
29 | " | 29 | " |
30 | 30 | ||