summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/python/python3-bcrypt/run-ptest
diff options
context:
space:
mode:
authorTim Orling <tim.orling@konsulko.com>2022-03-12 13:25:16 -0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-03-16 08:44:46 +0000
commit7c931d83ad84eef1bb24d00124e1dbee0855b48a (patch)
tree95ea31fcf5c38371eae5d52fe7d5cf557ea095b9 /meta/recipes-devtools/python/python3-bcrypt/run-ptest
parent5831114f881752212704474381570139f01919f1 (diff)
downloadopenembedded-core-7c931d83ad84eef1bb24d00124e1dbee0855b48a.tar.gz
python3-bcrypt: move from meta-python
Dependency for python3-cryptography Signed-off-by: Tim Orling <tim.orling@konsulko.com>
Diffstat (limited to 'meta/recipes-devtools/python/python3-bcrypt/run-ptest')
-rw-r--r--meta/recipes-devtools/python/python3-bcrypt/run-ptest3
1 files changed, 3 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python/python3-bcrypt/run-ptest b/meta/recipes-devtools/python/python3-bcrypt/run-ptest
new file mode 100644
index 0000000000..b63c4de0d9
--- /dev/null
+++ b/meta/recipes-devtools/python/python3-bcrypt/run-ptest
@@ -0,0 +1,3 @@
+#!/bin/sh
+
+pytest -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}}'