-
Notifications
You must be signed in to change notification settings - Fork 107
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 manifest having too many files and not substituting #9233
base: main
Are you sure you want to change the base?
Conversation
456919e
to
39f78f6
Compare
Also makes substitution of <IENS> and <ITER> for all parameters and responses
39f78f6
to
24147bf
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.
Except for my small question, this LGTM! 🚢
@@ -166,7 +167,9 @@ def write_to_runpath( | |||
self, run_path: Path, real_nr: int, ensemble: Ensemble | |||
) -> None: | |||
t = time.perf_counter() | |||
file_out = run_path.joinpath(self.output_file) | |||
file_out = run_path.joinpath( | |||
substitute_runpath_name(str(self.output_file), real_nr, ensemble.iteration) |
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.
why str
here and not other places? 🤔
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 is the only one of these that uses Path
for self.output_file
This is marked as a bug fix, but no issue is marked in the description 🤔 |
Also makes substitution of and for
all parameters and responses
git rebase -i main --exec 'pytest tests/ert/unit_tests -n logical -m "not integration_test"'
)When applicable