{% extends "base.html" %} {% block title %}MutPy mutation report{% endblock %} {% block content %}
{{ date_now.strftime('%d.%m.%Y %H:%M') }}
{{ target }}
{{ test.__name__ }}{% if target %}.{{ target }} {% endif %}
[{{ time|round(3) }} s]# | 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 }} |