{% extends "base.html" %} {% block title %}MutPy mutation report{% endblock %} {% block content %}

Target

Tests [{{ number_of_tests }}]

Result summary

Mutants [{{ score.all_mutants }}]

{{ (100 * score.killed_mutants / score.all_mutants)|round(1) }}%
{{ (100 * score.survived_mutants / score.all_mutants)|round(1) }}%
{{ (100 * score.incompetent_mutants / score.all_mutants)|round(1) }}%
{{ (100 * score.timeout_mutants / score.all_mutants)|round(1) }}%
{% for mutation in mutations %} {% endfor %}
# Module Operator Tests run Duration Result
{{ mutation.number }} {{ mutation.module }} {% for single_mutation in mutation.mutations %}{{ single_mutation.operator }} [{{ single_mutation.lineno }}]{% if not loop.last %}, {% endif %}{% endfor %} {% if mutation.tests_run %}{{ mutation.tests_run }}{% else %}-{% endif %} {% if mutation.time %}{{ mutation.time|round(3) }} s{% else %}-{% endif %} {{ mutation.status }}
{% endblock %}