mirror of
https://github.com/matrix-org/dendrite.git
synced 2025-12-17 20:03:10 -06:00
turtles gotta dream
This commit is contained in:
parent
4da2630904
commit
36f566a49b
|
|
@ -76,8 +76,13 @@ while read -r test_name; do
|
||||||
fi
|
fi
|
||||||
done <<< "${passed_but_expected_fail}"
|
done <<< "${passed_but_expected_fail}"
|
||||||
|
|
||||||
|
# Wrap output in code blocks for buildkite annotation rendering purposes
|
||||||
|
if [ -n "${tests_to_add}" ] && [ -n "${already_in_whitelist}" ]; then
|
||||||
|
echo "\`\`\`"
|
||||||
|
fi
|
||||||
|
|
||||||
if [ -n "${tests_to_add}" ]; then
|
if [ -n "${tests_to_add}" ]; then
|
||||||
echo "ERROR: The following passed tests are not present in $2. Please append them to the file:"
|
echo "ERROR: The following passed tests are not present in $2. Please append them to the file!:"
|
||||||
echo -e "${tests_to_add}"
|
echo -e "${tests_to_add}"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
@ -86,4 +91,8 @@ if [ -n "${already_in_whitelist}" ]; then
|
||||||
echo -e "${already_in_whitelist}"
|
echo -e "${already_in_whitelist}"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if [ -n "${tests_to_add}" ] && [ -n "${already_in_whitelist}" ]; then
|
||||||
|
echo "\`\`\`"
|
||||||
|
fi
|
||||||
|
|
||||||
exit ${fail_build}
|
exit ${fail_build}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue