{% extends "tcms_base.html" %} {% load extra_filters %} {% load static %} {% block subtitle %}Create new test run{% endblock %} {% block custom_stylesheet %} {% endblock %} {% block custom_javascript %} {% endblock %} {% block contents %}
Home >> ... >> {{ test_plan.plan_id }}: {{ test_plan.name }} >> New Test Run

Create New Test Run

{% csrf_token %} {# Working around for the bug https://bugzilla.redhat.com/show_bug.cgi?id=715499 #}
{{ form.summary }}
{{ form.summary.errors }}
{{ form.product }}
{{ form.product_version }} {{ form.product_version.errors }} Add Product Version
{{ form.build }} {{ form.build.errors }} Add Build
{{ form.manager }}
{{ form.manager.errors }}
{{ form.default_tester }}
{{ form.default_tester.errors }}
{{ form.auto_update_run_status }} {{ form.auto_update_run_status.help_text }}
{{ form.estimated_time }}
{{ form.estimated_time.errors }}
{{ form.notes }}
{% for env_group in test_plan.env_group.all %}
Environment Group: {{ env_group.name }}
    {% for property in env_group.property.all %}
  • {% endfor %}
{% empty%}

Environment group must be set for this test plan ({{ test_plan.product.name }}:{{ test_plan.product_version.value }}:{{ test_plan }}) before you will be able to select environments for this test run.If you do not have permission to edit this plan, please contact the author of this plan, mailto {{ test_plan.author.email }}

{% endfor %}
{% if test_cases %}
Selected cases: {% if num_unconfirmed_cases %} {{ num_unconfirmed_cases }} unconfirmed cases removed {% endif %}
{% for test_case in test_cases %} {% if not test_case.case_status.name == 'CONFIRMED' %} {% endif %} {{ test_case.summary }} {% endfor %}
ID Test Case Summary Author Created Date Category Priority Action
{{ test_case.case_id }} {% if test_case.case_status.name == 'CONFIRMED' %} {% endif %} {{ test_case.author.email }} {{ test_case.create_date }} {{ test_case.category }} {{ test_case.priority }} Remove
{% else %}
No testcase in this testrun , you may Select Cases from test plan.
{% endif %}
{% endblock %}