forked from organicmaps/organicmaps
Stacktrace for failures in Mail.
According to the JUnit xml specifications found on the internet, it seems that now the stacktraces for the failures in our tests should be represented in the mails Jenkins sends.
This commit is contained in:
parent
6d6bd1c266
commit
a80306ef25
1 changed files with 3 additions and 1 deletions
|
@ -97,7 +97,9 @@ class TestInfo:
|
|||
b.text = self.test_comment
|
||||
|
||||
if self.test_result == TestInfo.FAILED:
|
||||
ElementTree.SubElement(d, "failure")
|
||||
fail = ElementTree.SubElement(d, "failure")
|
||||
if self.test_comment:
|
||||
fail.text = self.test_comment
|
||||
return d
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue