Skip to content
Snippets Groups Projects
Commit dc39d736 authored by Pierre-Yves David's avatar Pierre-Yves David :octopus:
Browse files

gather more than just the median

Having more information will be useful
parent a9698da5
No related branches found
No related tags found
No related merge requests found
...@@ -83,6 +83,10 @@ ...@@ -83,6 +83,10 @@
result_data['result'] = {} result_data['result'] = {}
result_data['result']['time'] = {} result_data['result']['time'] = {}
result_data['result']['time']['median'] = r['results'][0]['median'] result_data['result']['time']['median'] = r['results'][0]['median']
result_data['result']['time']['mean'] = r['results'][0]['mean']
result_data['result']['time']['standard-deviation'] = r['results'][0]['stddev']
result_data['result']['time']['min'] = r['results'][0]['min']
result_data['result']['time']['max'] = r['results'][0]['max']
poulpe.write_data(result, result_data) poulpe.write_data(result, result_data)
return 0 return 0
......
...@@ -106,4 +106,6 @@ ...@@ -106,4 +106,6 @@
name = black-bench name = black-bench
result: result:
time: time:
max = * (glob)
mean = * (glob)
median = * (glob) median = * (glob)
...@@ -109,4 +111,6 @@ ...@@ -109,4 +111,6 @@
median = * (glob) median = * (glob)
min = * (glob)
standard-deviation = * (glob)
Quick comparision of values Quick comparision of values
--------------------------- ---------------------------
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment