-
-
Notifications
You must be signed in to change notification settings - Fork 176
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: Fix Environment.max_expected_height
for custom atmosphere
#707
Conversation
5093a70
to
2b51d10
Compare
538617a
to
6fe9b7c
Compare
38590a0
to
20dd98a
Compare
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## develop #707 +/- ##
===========================================
- Coverage 76.02% 75.90% -0.12%
===========================================
Files 99 99
Lines 11278 11222 -56
===========================================
- Hits 8574 8518 -56
Misses 2704 2704 ☔ View full report in Codecov by Sentry. |
All tests, including slow tests, are passing locally. |
@@ -1390,7 +1390,7 @@ def process_custom_atmosphere( | |||
None | |||
""" | |||
# Initialize an estimate of the maximum expected atmospheric model height | |||
max_expected_height = 1000 | |||
max_expected_height = self.max_expected_height or 1000 |
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 line solves the issue
…RocketPy-Team/RocketPy into bug/fix-env-max-expected-height
…RocketPy-Team/RocketPy into bug/fix-env-max-expected-height
…RocketPy-Team/RocketPy into bug/fix-env-max-expected-height
Pull request type
Checklist
black rocketpy/ tests/
) has passed locallypytest tests -m slow --runslow
) have passed locallyCHANGELOG.md
has been updated (if relevant)Current behavior
Enter text here...
New behavior
Enter text here...
Breaking change
Additional information
Enter text here...