-
Notifications
You must be signed in to change notification settings - Fork 0
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
return last company information as output file, not as warning #240
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #240 +/- ##
==========================================
- Coverage 51.21% 51.20% -0.02%
==========================================
Files 28 28
Lines 3118 3117 -1
==========================================
- Hits 1597 1596 -1
Misses 1521 1521 ☔ View full report in Codecov by Sentry. |
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.
Makes sense and works as expected as far as I can tell locally. My only minor concern is that rather than spitting out a warning to the console for every loanbook included in the process (which could be 1000's maybe), now it will create a new CSV in the prioritized_loanbooks_and_diagnostics
output directory for every loanbook included in the process? Maybe in the future we can think about how to better organize the prioritized_loanbooks_and_diagnostics
output directory.
Yes, that is a fair concern, structurally. For the moment I think this is fine, because the structure of the outputs will also be one file for each prioritized loan book, so there is some correspondence there. Also, the cases we have seen so far have always been significiantly below a case number of thousands of loan books. But I agree that it could be better nonetheless to gather all this information and write it into one file per run. |
closes #74