SilentFail Audit Report

Generated {{ generated_at }}  |  Pipeline integrity analysis

Tests Run
{{ total_tests }}
Failures
{{ total_failures }}
Pass Rate
{{ pass_rate }}%
High Severity
{{ severity_breakdown.get('HIGH', 0) }}
{% for sev, count in severity_breakdown.items() %} {{ sev }}: {{ count }} {% endfor %}
{% for cls_name, failures in failures_by_class.items() %}

{{ cls_name.replace('_', ' ').title() }} {{ failures | length }}

{% if failures %} {% for f in failures %}
{{ f.severity }} {{ f.failure_type }}
Description
{{ f.description }}
Input
{{ f.input | tojson(indent=2) if f.input is mapping else f.input }}
Output
{{ f.output | tojson(indent=2) if f.output is mapping else f.output }}
{% if f.error %}
Error
{{ f.error }}
{% endif %}
💡 {{ f.recommendation }}
{% endfor %} {% else %}
✓ No failures detected in this class.
{% endif %}
{% endfor %}