summaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools/python/python3-pylint
diff options
context:
space:
mode:
authorTim Orling <ticotimo@gmail.com>2024-02-16 16:15:51 -0800
committerKhem Raj <raj.khem@gmail.com>2024-02-16 16:42:39 -0800
commitee0c034eb9b79821b3a696d77302d983dde4215b (patch)
tree82bbc286f0addbcef9778cf1544c5d21c0c20fde /meta-python/recipes-devtools/python/python3-pylint
parent3b44038a39e60c1dd6918c596f62203888336bbb (diff)
downloadmeta-openembedded-ee0c034eb9b79821b3a696d77302d983dde4215b.tar.gz
python3-pylint: switch to pytest --automake
* Also replace ${PYTHON_PN} with python3 * Sort all REDEPENDS alphabetically * Drop trailing whitespace Signed-off-by: Tim Orling <tim.orling@konsulko.com> 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-ptest2
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 2a4e87e03a..ed424cb879 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
3pytest --benchmark-disable -vv --minimal-messages-config tests/test_functional.py | 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}}' 3pytest --benchmark-disable -vv --minimal-messages-config --automake tests/test_functional.py