mirror of
https://github.com/flatcar/scripts.git
synced 2025-12-22 09:42:25 +01:00
Merge pull request #3573 from flatcar/scripts
ci-automation: fix broken result indicators in test reports
This commit is contained in:
commit
e8c455bef8
@ -279,18 +279,18 @@ __md_print_test_verdict() {
|
||||
local failed_vendors="$4"
|
||||
|
||||
|
||||
v=""
|
||||
v="🟢 ${verdict}"
|
||||
if [ "${verdict}" = "not ok" ] ; then
|
||||
v=""
|
||||
v="❌ ${verdict}"
|
||||
fi
|
||||
|
||||
echo
|
||||
echo -n "${v} **${name}**"
|
||||
if [ -n "${succeded_vendors}" ] ; then
|
||||
echo -n " 🟢 Succeeded: ${succeded_vendors}"
|
||||
echo -n "; Succeeded: ${succeded_vendors}"
|
||||
fi
|
||||
if [ -n "${failed_vendors}" ] ; then
|
||||
echo -n " ❌ Failed: ${failed_vendors}"
|
||||
echo -n "; Failed: ${failed_vendors}"
|
||||
fi
|
||||
echo
|
||||
if [ "${verdict}" = "not ok" ] \
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user