Skip to content

Commit 275aa03

Browse files
authored
show date and time at the end of a doctest run (#1166)
Just to help me see when I have run the test shown in a window.
1 parent c1cf1a0 commit 275aa03

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

mathics/docpipeline.py

+3
Original file line numberDiff line numberDiff line change
@@ -938,6 +938,9 @@ def main():
938938
test_pipeline.print_and_log(
939939
f"Test evaluation took {datetime.now() - start_time} seconds"
940940
)
941+
test_pipeline.print_and_log(
942+
f"Test finished at {datetime.now().strftime('%d/%m/%Y %H:%M:%S')}"
943+
)
941944

942945
if args.show_statistics:
943946
show_lru_cache_statistics()

0 commit comments

Comments
 (0)