-
-
Notifications
You must be signed in to change notification settings - Fork 167
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
BUG: Function breaks if a header is present in the csv file #485
Conversation
Codecov ReportAttention:
Additional details and impacted files@@ Coverage Diff @@
## master #485 +/- ##
==========================================
+ Coverage 70.89% 70.91% +0.02%
==========================================
Files 55 55
Lines 9258 9261 +3
==========================================
+ Hits 6563 6567 +4
+ Misses 2695 2694 -1
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
- single line headers are now officially supported... - with or without quotes. - The docstring was updated.
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!
All tests are passing locally, including with the --run-slow
option
The check_user_inputs
method is raising more problems than what I thought in the beginning. Improvements for this method are welcome, and I believe there's already an issue for that.
Good news: docs are passing! See https://docs.rocketpy.org/en/bug-v1.1.1-docs-build/
Co-authored-by: Giovani Hidalgo Ceotto <[email protected]>
Co-authored-by: Giovani Hidalgo Ceotto <[email protected]>
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.
This Looks Good To Me
Pull request type
Checklist
black rocketpy/ tests/
) has passed locallypytest --runslow
) have passed locallyCHANGELOG.md
has been updated (if relevant)Current behavior
The
Function.__check_user_inputs
did not support headered csv, which caused an error on docs build.New behavior
The support for headered csv was added and there was a
LiquidMotor
example in the docs that needed refactor to the new cap height definition.Breaking change