mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-15 01:12:56 +03:00
ci/benchmarks: fix copypaste bug affecting regression report highlighting in #5942
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6021 GitOrigin-RevId: eb77bf97a52e533c565bfb12a45c0851f832610d
This commit is contained in:
parent
66a698cbef
commit
d2b3ec8938
4
server/benchmarks/fabfile.py
vendored
4
server/benchmarks/fabfile.py
vendored
@ -556,11 +556,11 @@ def pretty_print_regression_report_github_comment(results, skip_pr_report_names,
|
||||
for metric_name, d in metrics.items():
|
||||
if len(list(metrics.items())) == 1: # need to waste a line if only one metric:
|
||||
out(f"{col(d )} { ' ': <21s}{'│ '+bench_name_pretty : <40}{ metric_name: >28}{d :>12.1f} ┐")
|
||||
out(f"{col(l1)} { ' ': <21s}{'│' }{ '':_>67}{'' :>12s} ┘")
|
||||
out(f"{col( )} { ' ': <21s}{'│' }{ '':_>67}{'' :>12s} ┘")
|
||||
elif metric_name == list(metrics.items())[0][0]: # first:
|
||||
out(f"{col(d )} { ' ': <21s}{'│ '+bench_name_pretty : <40}{ metric_name: >28}{d :>12.1f} ┐")
|
||||
elif metric_name == list(metrics.items())[-1][0]: # last:
|
||||
out(f"{col(l1)} { ' ': <21s}{'│' }{ ' '+metric_name:_>67}{d :>12.1f} ┘")
|
||||
out(f"{col(d )} { ' ': <21s}{'│' }{ ' '+metric_name:_>67}{d :>12.1f} ┘")
|
||||
else: # middle, omit name
|
||||
out(f"{col(d )} { ' ': <21s}{'│ ' : <40}{ metric_name: >28}{d :>12.1f} │")
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user