Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ Notebook: (local) - Lifecycle State: N/A, Result: N/A
============================================================
PASSING TESTS
------------------------------------------------------------
test_name (19.43149897100011 seconds)
test_name (19.431 seconds)


============================================================
Expand Down Expand Up @@ -246,8 +246,8 @@ Run Page URL: N/A
============================================================
PASSING TESTS
------------------------------------------------------------
country_data_is_inserted (11.446587234000617 seconds)
customer_data_is_inserted (11.53276599000128 seconds)
country_data_is_inserted (11.447 seconds)
customer_data_is_inserted (11.533 seconds)


============================================================
Expand Down
2 changes: 1 addition & 1 deletion common/resultsview.py
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ def __init__(self, nutter_test_results):
def get_view(self):
sw = StringWriter()

time = '{} seconds'.format(self.execution_time)
time = '{:.3f} seconds'.format(self.execution_time)
sw.write_line('{} ({})'.format(self.test_case, time))

if (self.passed):
Expand Down