diff options
author | Khem Raj <raj.khem@gmail.com> | 2023-05-12 10:41:44 -0700 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2023-05-12 10:42:45 -0700 |
commit | 3e5378b42a6daae114deb9dbdee2271cd9e7aed7 (patch) | |
tree | 5e3c69b392ab44511dcbd0ab66a4e5fa97f0effe /meta-python/recipes-devtools/python/python3-pylint | |
parent | 7a75c2d6b4334ee7701158bdd63e8c5acbe3125f (diff) | |
download | meta-openembedded-3e5378b42a6daae114deb9dbdee2271cd9e7aed7.tar.gz |
python3-pylint: Fix missing deps for ptests
Disable benchmarks in ptest run
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-pylint')
-rw-r--r-- | meta-python/recipes-devtools/python/python3-pylint/run-ptest | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-python/recipes-devtools/python/python3-pylint/run-ptest b/meta-python/recipes-devtools/python/python3-pylint/run-ptest index b63c4de0d9..7a5ceedf95 100644 --- a/meta-python/recipes-devtools/python/python3-pylint/run-ptest +++ b/meta-python/recipes-devtools/python/python3-pylint/run-ptest | |||
@@ -1,3 +1,3 @@ | |||
1 | #!/bin/sh | 1 | #!/bin/sh |
2 | 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}}' | 3 | pytest --benchmark-disable -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}}' |