We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2eeb2ff commit fad55f8Copy full SHA for fad55f8
lib/results_table_builder.rb
@@ -18,8 +18,7 @@ def build
18
format = build_format
19
20
@bench_names.each do |bench_name|
21
- # Skip this bench_name if we failed to get data for any of the executables.
22
- next unless @bench_data.all? { |(_k, v)| v[bench_name] }
+ next unless has_complete_data?(bench_name)
23
24
row = build_row(bench_name)
25
table << row
@@ -30,6 +29,10 @@ def build
30
29
31
private
32
+ def has_complete_data?(bench_name)
33
+ @bench_data.all? { |(_k, v)| v[bench_name] }
34
+ end
35
+
36
def build_header
37
header = ["bench"]
38
0 commit comments