Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[travis] Better match pattern for colorizing failing tests
  • Loading branch information
m-kuhn committed Jun 2, 2017
1 parent e2227d9 commit 085a284
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .ci/travis/scripts/ctest2travis.py
Expand Up @@ -95,7 +95,7 @@ def start_test_fold():
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

Expand Down

0 comments on commit 085a284

Please sign in to comment.