-
Notifications
You must be signed in to change notification settings - Fork 27
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
Refactor experiment.set_counter() and some minor bug fixes #366
Refactor experiment.set_counter() and some minor bug fixes #366
Conversation
Hello @jo-basevi! Thanks for updating this PR. We checked the lines you've touched for PEP 8 issues, and found: There are currently no PEP 8 issues detected in this Pull Request. Cheers! 🍻 Comment last updated at 2023-10-03 23:26:51 UTC |
b476d21
to
eb82980
Compare
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.
Looks great, thanks for cleaning that up and closing a bunch of issues.
Just a couple of tweaks and it should be good to go.
A previous CI action failed at the lint stage because of for prof in self.profilers:
if prof.runscript:
model_prog = model_prog.append(prof.runscript) I think it found a legitimate error so I fixed it in the previous commit (though could be wrong). But I am bit confused as to how that error isn't picked up when running |
Yeah that is weird. It is a not often used part of the code, but you're right that a limiter should have picked that up before. Is computing supposed to be deterministic? |
Well it is now failing in another PR, so it'll be good to fix here.. |
- Fix to payu crashing with empty restart files/dirs - Add default values of LD_LIBRARY_PATHS - Raise exceptions for missing model executables
2bd0718
to
b5c0c30
Compare
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.
Good to merge I think. Thanks.
Closes #285, closes #307, closes #306