projects
/
pyutils.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c13695b
)
Add an overall runtime line to the final report in run_tests.py.
author
Scott Gasch
<scott@gasch.org>
Tue, 18 Oct 2022 17:22:54 +0000
(10:22 -0700)
committer
Scott Gasch
<scott@gasch.org>
Tue, 18 Oct 2022 17:22:54 +0000
(10:22 -0700)
tests/run_tests.py
patch
|
blob
|
history
diff --git
a/tests/run_tests.py
b/tests/run_tests.py
index 3b74ccb8cd6a3aa9d008e262b849b21938e72965..3bc2a114de2291ff1084104d38b379457ac97f57 100755
(executable)
--- a/
tests/run_tests.py
+++ b/
tests/run_tests.py
@@
-597,9
+597,10
@@
def main() -> Optional[int]:
print(f' {color}{now - start_time:.1f}s{ansi.reset()}', end='\r')
time.sleep(0.1)
- print(f'{ansi.clear_line()}
Final Report:
')
+ print(f'{ansi.clear_line()}
{ansi.underline()}Final Report:{ansi.reset()}
')
if config.config['coverage']:
code_coverage_report()
+ print(f'Test suite runtime: {time.time() - start_time:.1f}s')
total_problems = test_results_report(results)
if total_problems > 0:
logging.error(