{% load comments %} {% load extra_filters %} {% load report_tags %} {% load static %} {{ testrun.summary }}
Test Log Report
[{{ test_run.run_id }}] {{ test_run.summary }}
Test Plan:{{ test_run.plan.plan_id }}:{{ test_run.plan.name }}
Product Version:{{ test_run.product_version }}
Manager:{{ test_run.manager.email }}
Estimated Time:{{ test_run.estimated_time|timedelta2string }}
Environment:
    {% for run_env_value in test_run.env_value.select_related.all %}
  • {{ run_env_value.property }}: {{ run_env_value.value }}
  • {% endfor %}
Product:{{ test_run.build.product }}
Build:{{ test_run.build }}
Default Tester: {% if test_run.default_tester_id %}{{ test_run.default_tester.email }}{% else %}{{ test_run.default_tester }}{% endif %}
Started at:{{ test_run.start_date }}
Finished at:{{ test_run.stop_date }}
Note:{{ test_run.notes|urlize|linebreaksbr }}
Manual Cases{{ mode_stats.manual|percentage:test_case_runs_count }}({{ mode_stats.manual }}/{{ test_case_runs_count }}) Automated Cases{{ mode_stats.automated|percentage:test_case_runs_count }}({{ mode_stats.automated }}/{{ test_case_runs_count }}) Manual/Automated Cases{{ mode_stats.manual_automated|percentage:test_case_runs_count }}({{ mode_stats.manual_automated }}/{{ test_case_runs_count }})
{% if test_case_runs %} {% for test_case_run in test_case_runs %} {% endfor %}
Case-Run ID Case ID Summary Mode Tested by Category Status Closed at
{{ test_case_run.case_run_id }} {{ test_case_run.case_id }} {{ test_case_run.case.summary }} {{ test_case_run.case.get_is_automated_status }} {{ test_case_run.tested_by.username }} {{ test_case_run.case.category.name }} {{ test_case_run.case_run_status.name|upper }} {{ test_case_run.close_date }}
{% if test_case_run.display_issues %} Issues: {% for issue_key, url in test_case_run.display_issues %} {{ issue_key }} {% endfor %} {% endif %} {% if test_case_run.user_comments %}

Comments

    {% for comment in test_case_run.user_comments %}
  • {{ comment.user_name }}[{{ comment.submit_date }}]
    {{ comment.comment|urlize|linebreaksbr }}
  • {% endfor %}
{% endif %}
{% endif %}

Total: {{ test_case_runs_count }}

Pending test cases: {{ summary_stats.idle }}

Test run completed: {{ summary_stats.complete|percentage:test_case_runs_count }}

{% if test_case_run_issues %}

Issues List:

{% for issue_key, issue_url in test_case_run_issues %} {% endfor %} {% for tracker_name, url in display_issues_by_tracker %} {% endfor %}
Issue Key URL
{{ issue_key }} {{ issue_url }}
View all issues ({{ tracker_name }}) {{ url }}
{% endif %}