diff options
author | Zang Ruochen <zangrc.fnst@cn.fujitsu.com> | 2020-06-15 22:36:56 +0800 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2020-06-17 08:55:53 -0700 |
commit | 3a05a4e325d72cbf36d28675537a955f34af9d2a (patch) | |
tree | 29a31e903874188a5c015c48b1bb79ed5e775363 /meta-python/recipes-devtools/python/python3-geojson | |
parent | 4d5162a0301f76a2ea1a8483254e17621f1ed2a0 (diff) | |
download | meta-openembedded-3a05a4e325d72cbf36d28675537a955f34af9d2a.tar.gz |
python3-geojson: Enable ptest
Signed-off-by: Zang Ruochen <zangrc.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-geojson')
-rw-r--r-- | meta-python/recipes-devtools/python/python3-geojson/run-ptest | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-geojson/run-ptest b/meta-python/recipes-devtools/python/python3-geojson/run-ptest new file mode 100644 index 000000000..b63c4de0d --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-geojson/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}}' | ||