File: markdown_quality_report.md

package info (click to toggle)
diff-cover 10.2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,256 kB
  • sloc: python: 6,452; xml: 218; cpp: 18; sh: 12; makefile: 10
file content (25 lines) | stat: -rw-r--r-- 754 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# Diff Quality
## Quality Report: {{ report_name }}
## Diff: {{ diff_name }}

{% if src_stats %}
{% for src_path, stats in src_stats|dictsort %}
{% if stats.percent_covered < 100 %}
- {{ src_path }} ({{ stats.percent_covered|round(1) }}%):
{% for line, message in stats.violations %}
  - {{ src_path }}:{{ line }}: {{ message }}
{% endfor %}
{% else %}
- {{ src_path }} (100%)
{% endif %}
{% endfor %}

- **Total**:   {{ total_num_lines }} {% trans count=total_num_lines %}line{% pluralize %}lines{% endtrans %}

- **Violations**: {{ total_num_violations }} {% trans count=total_num_violations %}line{% pluralize %}lines{% endtrans %}

- **% Quality**: {{ total_percent_covered }}%

{% else %}
No lines with quality information in this diff.
{% endif %}