Skip to content

Commit

Permalink
Merge pull request #7 from crucio55/regressions_use_options
Browse files Browse the repository at this point in the history
Use configured analysis options in hunter regressions
  • Loading branch information
henrikingo authored Nov 20, 2023
2 parents 1fe6436 + 1305ca7 commit d7fe028
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hunter/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -239,10 +239,10 @@ def regressions(
else:
baseline_index = baseline_series.find_first_not_earlier_than(since_time)

baseline_series = baseline_series.analyze()
baseline_series = baseline_series.analyze(options=options)

if selector.branch:
target_series = importer.fetch_data(test, selector).analyze()
target_series = importer.fetch_data(test, selector).analyze(options=options)
else:
target_series = baseline_series

Expand Down

0 comments on commit d7fe028

Please sign in to comment.