aboutsummaryrefslogtreecommitdiff
path: root/show-expected-fail-tests.sh
diff options
context:
space:
mode:
authorTill <2353100+S7evinK@users.noreply.github.com>2022-04-05 15:32:30 +0200
committerGitHub <noreply@github.com>2022-04-05 15:32:30 +0200
commitc84937b85292c31411eb2329570fdbf1903582e7 (patch)
tree603672cfcab83ac6cb84620cdc1e2d566260a859 /show-expected-fail-tests.sh
parent47be39c18e4c76f93fc35978b534ef178aafdbcf (diff)
Add Are We Synapse Yet to GHA (#2321)
* Add Are We Synapse Yet to GHA * Better output & add comments
Diffstat (limited to 'show-expected-fail-tests.sh')
-rwxr-xr-xshow-expected-fail-tests.sh16
1 files changed, 8 insertions, 8 deletions
diff --git a/show-expected-fail-tests.sh b/show-expected-fail-tests.sh
index 320d4ebd..3ed937a0 100755
--- a/show-expected-fail-tests.sh
+++ b/show-expected-fail-tests.sh
@@ -89,17 +89,17 @@ if [ -n "${tests_to_add}" ] && [ -n "${already_in_whitelist}" ]; then
fi
if [ -n "${tests_to_add}" ]; then
- echo "**ERROR**: The following tests passed but are not present in \`$2\`. Please append them to the file:"
- echo "\`\`\`"
- echo -e "${tests_to_add}"
- echo "\`\`\`"
+ echo "::error::The following tests passed but are not present in \`$2\`. Please append them to the file:"
+ echo "::group::Passing tests"
+ echo -e "${tests_to_add}"
+ echo "::endgroup::"
fi
if [ -n "${already_in_whitelist}" ]; then
- echo "**WARN**: Tests in the whitelist still marked as **expected fail**:"
- echo "\`\`\`"
- echo -e "${already_in_whitelist}"
- echo "\`\`\`"
+ echo "::warning::Tests in the whitelist still marked as **expected fail**:"
+ echo "::group::Still marked as expected fail"
+ echo -e "${already_in_whitelist}"
+ echo "::endgroup::"
fi
exit ${fail_build}