Continue Sessions using API from esmvalcore.experimental #3062
-
Is it possible to continue previous recipe runs? i.e. create a session from an output folder? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
The options from the command line can also be specified in config-user.yml and the CFG.start_session()
session['resume_from'] = ["/path/to/previous/run", "/path/to/other/previous/run"] or possibly from pathlib import Path
CFG.start_session()
session['resume_from'] = [Path("/path/to/previous/run"), Path("/path/to/other/previous/run")] (I did not try this myself). Does that solve your problem? |
Beta Was this translation helpful? Give feedback.
The options from the command line can also be specified in config-user.yml and the
esmvalcore.config.Sesssion
you're using, so you should be able to do something likeor possibly
(I did not try this myself). Does that solve your problem?