Skip to content

Commit

Permalink
Fix compare breadcrumb links (#152)
Browse files Browse the repository at this point in the history
  • Loading branch information
dianaclarke committed Aug 21, 2021
1 parent 6d8bfe1 commit daa57cb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions conbench/app/compare.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@ def page(self, comparisons, regressions, improvements, baseline_id, contender_id
plot = self._get_plot(baseline, contender)
plot_history = self.get_history_plot(contender)
baseline_run_id = baseline["run_id"]
contender_run_id = baseline["run_id"]
contender_run_id = contender["run_id"]
compare = f"{baseline_run_id}...{contender_run_id}"
compare_runs_url = f.url_for("app.compare-runs", compare_ids=compare)
compare = f'{baseline["batch_id"]}...{baseline["batch_id"]}'
compare = f'{baseline["batch_id"]}...{contender["batch_id"]}'
compare_batches_url = f.url_for("app.compare-batches", compare_ids=compare)

if comparisons:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

setuptools.setup(
name="conbench",
version="1.9.0",
version="1.10.0",
description="Continuous Benchmarking (CB) Framework",
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down

0 comments on commit daa57cb

Please sign in to comment.