{# This file is part of Pynguin. SPDX-FileCopyrightText: 2019–2025 Pynguin Contributors SPDX-License-Identifier: MIT -#} Pynguin coverage report

Pynguin coverage report for module '{{cov_report.module}}'

{% if cov_report.branch_coverage != None -%}

Achieved {{"{:.2%}".format(cov_report.branch_coverage)}} branch coverage: {{cov_report.branchless_code_objects.covered}}/{{cov_report.branchless_code_objects.existing}} branchless code objects covered. {{cov_report.branches.covered}}/{{cov_report.branches.existing}} branches covered.

{% endif -%} {% if cov_report.line_coverage != None -%}

Achieved {{"{:.2%}".format(cov_report.line_coverage)}} line coverage: {{cov_report.lines.covered}}/{{cov_report.lines.existing}} lines covered.

{% endif -%}
{% for line in cov_report.line_annotations -%} {% if line.total.existing == 0 -%} {{line.line_no}} {% elif line.total.covered == 0 -%} {{line.line_no}} {% elif line.total.covered < line.total.existing -%} {{line.line_no}} {% else -%} {{line.line_no}} {% endif -%} {% endfor -%} {{highlight("".join(cov_report.source), lexer(), formatter(style="solarized-dark"))}}