{% set top = summary.top %} {% set timestamp = summary.timestamp %} {{ top.name }} Simulation Results
{% if breadcrumbs %} {% endif %}

Simulation Results: {{ top.name }}

 
{{ timestamp.strftime("%d/%m/%Y %H:%M:%S") }} sha: {{ top.commit[:7] }} json Branch: {{ top.branch }}
{% for block_name in summary.flow_results.keys()|sort %} {% set flow = summary.flow_results[block_name] %} {% endfor %}
Block Pass Total % Cov
{{ block_name | upper }} {{ flow.passed }} {{ flow.total }} {{ "%.2f" | format(flow.percent) }} {% if flow.coverage and flow.coverage.get('score') is not none %} {{ "%.2f" | format(flow.coverage.score) }} {% else %} - {% endif %}