Skip to content

Commit

Permalink
Update test_results.py
Browse files Browse the repository at this point in the history
  • Loading branch information
adiralashiva8 authored Oct 23, 2024
1 parent 6300834 commit 3d8f9bd
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion robotframework_metrics/test_results.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ def visit_test(self, test):
"Time" : test.elapsedtime,
# "Message" : html_format(test.message),
"Message" : str(test.message).replace("*HTML*",""),
"Tags" : test.tags
"Tags" : test.tags,
'start_time': test.starttime,
'end_time': test.endtime,
}
self.test_list.append(test_json)

0 comments on commit 3d8f9bd

Please sign in to comment.