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

result-compare: also track variants

This is an important part of the variation.
parent 6e31f69e
No related branches found
No related tags found
No related merge requests found
Pipeline #57332 passed
......@@ -31,6 +31,10 @@
current = current.get(k)
if current is not None:
headers.append((".".join(key), current))
variants = result['benchmark'].get('variants', {})
for key, value in sorted(variants.items()):
headers.append((f"benchmark.variants.{key}", value))
return tuple(headers)
......
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