summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta-python/recipes-devtools/python/python3-parse-type/run-ptest2
-rw-r--r--meta-python/recipes-devtools/python/python3-parse-type_0.6.2.bb5
2 files changed, 4 insertions, 3 deletions
diff --git a/meta-python/recipes-devtools/python/python3-parse-type/run-ptest b/meta-python/recipes-devtools/python/python3-parse-type/run-ptest
index b63c4de0d9..8d2017d39c 100644
--- a/meta-python/recipes-devtools/python/python3-parse-type/run-ptest
+++ b/meta-python/recipes-devtools/python/python3-parse-type/run-ptest
@@ -1,3 +1,3 @@
1#!/bin/sh 1#!/bin/sh
2 2
3pytest -o log_cli=true -o log_cli_level=INFO | 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}}' 3pytest --automake
diff --git a/meta-python/recipes-devtools/python/python3-parse-type_0.6.2.bb b/meta-python/recipes-devtools/python/python3-parse-type_0.6.2.bb
index 99493db322..a7d8cd86ce 100644
--- a/meta-python/recipes-devtools/python/python3-parse-type_0.6.2.bb
+++ b/meta-python/recipes-devtools/python/python3-parse-type_0.6.2.bb
@@ -8,14 +8,15 @@ SRC_URI[sha256sum] = "79b1f2497060d0928bc46016793f1fca1057c4aacdf15ef876aa48d75a
8PYPI_PACKAGE = "parse_type" 8PYPI_PACKAGE = "parse_type"
9inherit pypi ptest setuptools3 9inherit pypi ptest setuptools3
10 10
11RDEPENDS:${PN} += "${PYTHON_PN}-parse" 11RDEPENDS:${PN} += "python3-parse"
12 12
13SRC_URI += " \ 13SRC_URI += " \
14 file://run-ptest \ 14 file://run-ptest \
15" 15"
16 16
17RDEPENDS:${PN}-ptest += " \ 17RDEPENDS:${PN}-ptest += " \
18 ${PYTHON_PN}-pytest \ 18 python3-pytest \
19 python3-unittest-automake-output \
19" 20"
20 21
21do_install_ptest() { 22do_install_ptest() {