We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b3408a6 commit 0ee037cCopy full SHA for 0ee037c
moduleframework/mtf_log_parser.py
@@ -42,10 +42,10 @@ def main():
42
exit(3)
43
delimiter=""
44
for i in data['tests']:
45
- if i.get('status') == 'ERROR':
+ if i.get('status') in ['ERROR','FAIL']:
46
print(delimiter)
47
print("TEST: {0}".format(i.get('id')))
48
print("ERROR: {0}".format(i.get('fail_reason')))
49
- print("LOG: {0}".format(i.get('logfile')))
+ print(" {0}".format(i.get('logfile')))
50
delimiter = "-------------------------"
51
0 commit comments