Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 10 additions & 5 deletions _episodes/04-recipe.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: "Running your first recipe"
teaching: 15
exercises: 15
compatibility: ESMValTool v2.12.0
compatibility: ESMValTool v2.13.0

questions:
- "How to run a recipe?"
Expand Down Expand Up @@ -45,14 +45,18 @@ or if you have the user configuration file in your current directory then
```
esmvaltool run --config_dir . examples/recipe_python.yml
```

If everything is okay, you should see that ESMValTool is printing a lot of
output to the command line. The final message should be "Run was successful".
The exact output varies depending on your machine, but it should look something
like the example log output on terminal below.
like the example log output below.

```

{% include example_output.txt %}

```
{: .output}
Comment on lines +53 to +58
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Could you collapse the long output?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@LisaBock - I am not able to figure out how to do a drop down and include text from an extrenal file. I tried a few things but couldn't get it to work. Do you know how to do it?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It is not too long and will be useful to see, so if it's ok, we can leave it as is. When we move to .rst format, we can make more changes as needed. Is that ok?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@rswamina It's okay for me. I tried it out, but I also couldn't find a better solution.

You can merge it!


> ## Pro tip: ESMValTool search paths
>
> You might wonder how ESMValTool was able find the recipe file, even though
Expand Down Expand Up @@ -132,8 +136,9 @@ distinguished in the log messages:
> > following line in the output:
> >
> > ```
> >INFO [3966381] These tasks will be executed: timeseries/script1,
> > timeseries/tas_amsterdam, timeseries/tas_global, map/tas, map/script1
> > [3098040] INFO These tasks will be executed: timeseries/tas_global,
> > map/tas, map/script1, timeseries/tas_amsterdam, timeseries/script1
> >
> > ```
> >
> > So there are three tasks related to timeseries: global temperature,
Expand Down
Loading