Skip to content

Commit

Permalink
adding no match when uuid/baseline is set
Browse files Browse the repository at this point in the history
  • Loading branch information
paigerube14 committed Feb 13, 2024
1 parent 4d3aa42 commit 8252c5a
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions orion.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,11 @@ def orion(uuid, baseline, config, debug, output, hunter_analyze):
ids = uuids
else:
index = "ripsaw-kube-burner"
runs = match.match_kube_burner(uuids)
ids = match.filter_runs(runs, runs)
if baseline == "":
runs = match.match_kube_burner(uuids)
ids = match.filter_runs(runs, runs)
else:
ids = uuids

metrics = test["metrics"]
dataframe_list = get_metric_data(ids, index, metrics, match, logger)
Expand Down

0 comments on commit 8252c5a

Please sign in to comment.