Increase resolution for runtime
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2021-12-11 14:53:09 +01:00
parent a2fb393628
commit a5229f5209

View File

@@ -22,6 +22,6 @@ for dir in [x for x in sorted(listdir('.')) if isdir(x)]:
raise CalledProcessError(p.returncode, p.args)
run_time = end_time-start_time
total_run_time += run_time
print(f'Runtime: {run_time:.2f} s')
print(f'Runtime: {run_time:.3f} s')
print('--------------------------------')
print(f'Total runtime: {total_run_time:.2f} s')
print(f'Total runtime: {total_run_time:.3f} s')