diff --git a/README.md b/README.md index 7d88996..15765d3 100644 --- a/README.md +++ b/README.md @@ -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) ============================================================ @@ -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) ============================================================ diff --git a/common/resultsview.py b/common/resultsview.py index a531800..05de4b2 100644 --- a/common/resultsview.py +++ b/common/resultsview.py @@ -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):