EOExecution Report

EOWorkflow dependency graph

Execution status

{% for execution in execution_stats %} {% endfor %}

 ... Execution successfully finished
 ... Execution failed because of an error

EOTasks

Initialization parameters

{% for task in task_descriptions %}

{{ task['name'] }}

{% if task['args'] %} {% else %}

{% endif %} {% endfor %}

Source code of custom tasks

{% for task_title, task_source in task_sources.items() %}

{{ task_title }}

{% if task_source is none %}

Cannot collect source code of a task which is not defined in a .py file

{% else %} {{ task_source }} {% endif %}
{% endfor %}

Execution details

{% for execution in execution_stats %}

Execution {{ execution_names[loop.index - 1] }}

Statistics
{% if 'error' in execution %} Error
{{ execution['error'] }} {% endif %}
{{ execution_logs[loop.index - 1] }}
{% endfor %}