[travis] Better match pattern for colorizing failing tests

This commit is contained in:
Matthias Kuhn 2017-06-01 15:38:24 +02:00
parent e2227d9998
commit 085a284c58

View File

@ -95,7 +95,7 @@ for line in p.stdout:
end_fold()
else:
if re.match('FAIL[:\!].*', updated_line):
if re.match('(FAIL|ERROR)[:\!].*', updated_line):
updated_line = colored(updated_line, 'yellow')
in_failure = True