summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/python/python3/run-ptest
blob: 05396e91abba2263b2fa632dafab78511154aa97 (plain)
1
2
3
#!/bin/sh

SETUPTOOLS_USE_DISTUTILS=nonlocal python3 -m test -v | sed -u -e '/\.\.\. ok/ s/^/PASS: /g' -r -e '/\.\.\. (ERROR|FAIL)/ s/^/FAIL: /g' -e '/\.\.\. skipped/ s/^/SKIP: /g' -e 's/ \.\.\. ok//g' -e 's/ \.\.\. ERROR//g' -e 's/ \.\.\. FAIL//g' -e 's/ \.\.\. skipped//g'