diff options
author | Trevor Gamblin <trevor.gamblin@windriver.com> | 2022-03-22 14:39:11 -0400 |
---|---|---|
committer | Trevor Gamblin <trevor.gamblin@windriver.com> | 2022-03-23 09:46:31 -0400 |
commit | 716ff86b3fc3bf80f6f907cfbcd0bb5dbdfa63ad (patch) | |
tree | b30eafb98b1f0271775dcfcaddfddfb85ccc10ab /meta-python/recipes-devtools/python/python3-pytest-lazy-fixture/run-ptest | |
parent | 5a91f2b8f9c44d1c6b45761f2a715269f85115a2 (diff) | |
download | meta-openembedded-716ff86b3fc3bf80f6f907cfbcd0bb5dbdfa63ad.tar.gz |
python3-pytest-lazy-fixture: add recipe
This is a minor extension of pytest that is used by some ptests, such as
python3-prettytable. There is a set of ptests included (run-ptest script
is based on the one from python3-aspectlib).
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-pytest-lazy-fixture/run-ptest')
-rw-r--r-- | meta-python/recipes-devtools/python/python3-pytest-lazy-fixture/run-ptest | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-pytest-lazy-fixture/run-ptest b/meta-python/recipes-devtools/python/python3-pytest-lazy-fixture/run-ptest new file mode 100644 index 0000000000..b63c4de0d9 --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-pytest-lazy-fixture/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}}' | ||