-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
🩹 Fix result data overwritten when using multiple dataset_groups #1147
🩹 Fix result data overwritten when using multiple dataset_groups #1147
Conversation
This prevents overwriting existing data from a different dataset model.
Sourcery Code Quality Report❌ Merging this PR will decrease code quality in the affected files by 0.77%.
Here are some functions in these files that still need a tune-up:
Legend and ExplanationThe emojis denote the absolute quality of the code:
The 👍 and 👎 indicate whether the quality has improved or gotten worse with this pull request. Please see our documentation here for details on how these metrics are calculated. We are actively working on this report - lots more documentation and extra metrics to come! Help us improve this quality report! |
Kudos, SonarCloud Quality Gate passed! 0 Bugs No Coverage information |
Benchmark is done. Checkout the benchmark result page. Benchmark diff v0.6.0 vs. mainParametrized benchmark signatures: BenchmarkOptimize.time_optimize(index_dependent, grouped, weight)
Benchmark diff main vs. PRParametrized benchmark signatures: BenchmarkOptimize.time_optimize(index_dependent, grouped, weight)
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Lgtm
Codecov ReportBase: 87.2% // Head: 87.2% // No change to project coverage 👍
Additional details and impacted files@@ Coverage Diff @@
## main #1147 +/- ##
=====================================
Coverage 87.2% 87.2%
=====================================
Files 103 103
Lines 5274 5274
Branches 916 916
=====================================
Hits 4599 4599
Misses 527 527
Partials 148 148
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. ☔ View full report at Codecov. |
This fixes a bug when using multiple
dataset_groups
, where eachOptimizationGroup
(one perdataset_group
) overwrites previous results from differentdataset_group
with the input data.Change summary
Checklist