diff --git a/app/views/directives/tempest-summary.html b/app/views/directives/tempest-summary.html index 87be558..83828c1 100644 --- a/app/views/directives/tempest-summary.html +++ b/app/views/directives/tempest-summary.html @@ -49,8 +49,8 @@
- {{fail.details}} +
+ {{line}}
diff --git a/stackviz/export.py b/stackviz/export.py index 5db5a5e..05793fe 100644 --- a/stackviz/export.py +++ b/stackviz/export.py @@ -96,7 +96,9 @@ def get_stats(stream): # of the traceback msg = None if 'traceback' in entry['details']: - msg = entry['details']['traceback'].strip().splitlines()[-1] + msg = entry['details']['traceback'].strip().splitlines()[-2:] + if 'Details' not in msg[1]: + msg.remove(msg[0]) failures.append({ 'name': entry['name'],