diff options
author | Zheng Ruoqin <zhengrq.fnst@cn.fujitsu.com> | 2020-06-16 01:28:35 +0800 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2020-06-17 08:57:49 -0700 |
commit | fff5e10eb501fdb957c5e2b5301c7fed0ed813f4 (patch) | |
tree | 8a752ce78f2e356b3da27bb2e698388339c32373 /meta-python/recipes-devtools/python/python3-cachetools/run-ptest | |
parent | 8ee8d72df4a18c3afb5fcf3089d85bc2741a8234 (diff) | |
download | meta-openembedded-fff5e10eb501fdb957c5e2b5301c7fed0ed813f4.tar.gz |
python3-cachetools: Enable ptest
Signed-off-by: Zheng Ruoqin <zhengrq.fnst@cn.fujitsu.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-cachetools/run-ptest')
-rw-r--r-- | meta-python/recipes-devtools/python/python3-cachetools/run-ptest | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-cachetools/run-ptest b/meta-python/recipes-devtools/python/python3-cachetools/run-ptest new file mode 100644 index 000000000..b63c4de0d --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-cachetools/run-ptest | |||
@@ -0,0 +1,3 @@ | |||
1 | #!/bin/sh | ||
2 | |||
3 | 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}}' | ||