Improve bot messaging on CI failures.

pull/35891/merge
Matt Clay 6 years ago
parent 95f202a7e3
commit 2a0adaf542

@ -339,16 +339,16 @@ class TestFailure(TestResult):
command = self.format_command()
if self.summary:
reason = 'error'
reason = 'the error'
else:
reason = 'error' if len(self.messages) == 1 else 'errors'
reason = '1 error' if len(self.messages) == 1 else '%d errors' % len(self.messages)
if help_link:
help_link_markup = ' [[?](%s)]' % help_link
help_link_markup = ' [[explain](%s)]' % help_link
else:
help_link_markup = ''
title = 'The test `%s`%s failed with the following %s:' % (command, help_link_markup, reason)
title = 'The test `%s`%s failed with %s:' % (command, help_link_markup, reason)
return title

Loading…
Cancel
Save