We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 251f0b3 commit 8eab434Copy full SHA for 8eab434
devops/scripts/benchmarks/compare.py
@@ -154,10 +154,10 @@ def reset_aggregate() -> dict:
154
}
155
156
# Add every benchmark run to average_aggregate:
157
- if test_run.name not in average_aggregate:
158
- average_aggregate[test_run.name] = reset_aggregate()
+ if test_run.label not in average_aggregate:
+ average_aggregate[test_run.label] = reset_aggregate()
159
else:
160
- average_aggregate[test_run.name]["aggregate"].add(test_run.value)
+ average_aggregate[test_run.label]["aggregate"].add(test_run.value)
161
162
return {
163
name: BenchmarkHistoricAverage(
0 commit comments