{% extends "insanity/base.html" %} {% load insanity_extra %} {% block title %} Test #{{test.id}} {% endblock %} {% block content %} {% if test.is_scenario %} {% if test.child.count %} {% endif %} {% endif %} {% if test.is_subtest %} {% endif %} {% if test.arguments %} {% endif %} {% if test.checklist %} {% endif %} {% if test.outputfiles %} {% endif %} {% if test.extrainfo %} {% endif %} {% if test.monitors %} {% endif %}
Test #{{ test.id }}
TestRun {{test.testrunid}}
test type {{test.type.type}}
Success rate {{test.resultpercentage|floatformat:1}}%
Subtests {% for subtest in test.child.all %} Test #{{ subtest.id }} Success:{{subtest.resultpercentage|floatformat:1}}%
{% endfor %}
Container Scenario #{{ test.parent.id }}
Arguments {% test_args_dict test %}
CheckList {% test_checklist_dict test %}
OutputFiles
    {% for outf in test.outputfiles.all %}
  • {{outf.name.name}} : {{outf.value}}
  • {% endfor %}
ExtraInfo {% test_extrainfo_dict test %}
Monitors {% for mon in test.monitors %} {% if mon.outputfiles %} {% endif %} {% endfor %}
ID Type Output files
{{ mon.id }} {{ mon.type.type }} {% for outf in mon.outputfiles.all %} {{ outf.basename }}
{% endfor %}
{% endblock %}