diff options
author | Martin Jansa <martin.jansa@gmail.com> | 2023-05-24 09:52:37 +0200 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2023-05-24 07:23:54 -0700 |
commit | 1b8166a397a96e4dad89865ecdb532b49cbfd421 (patch) | |
tree | 897cd344a876c570768295f72488eb031c9d7aa7 /meta-python/recipes-devtools/python/python3-anyjson/run-ptest | |
parent | e02a4d57b210dfea4b44e3ab20df109d5de883dc (diff) | |
download | meta-openembedded-1b8166a397a96e4dad89865ecdb532b49cbfd421.tar.gz |
python3-anyjson: remove unused files
* the recipe was removed in:
https://git.openembedded.org/meta-openembedded/commit/?id=09abb3ffad217edbbc0c95bc6dda41f2764f2b67
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-anyjson/run-ptest')
-rw-r--r-- | meta-python/recipes-devtools/python/python3-anyjson/run-ptest | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/meta-python/recipes-devtools/python/python3-anyjson/run-ptest b/meta-python/recipes-devtools/python/python3-anyjson/run-ptest deleted file mode 100644 index b63c4de0d9..0000000000 --- a/meta-python/recipes-devtools/python/python3-anyjson/run-ptest +++ /dev/null | |||
@@ -1,3 +0,0 @@ | |||
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}}' | ||