{% extends "/base.html" %} {% block title_text %}Rally Verification job results{% endblock %} {% block css %} li { margin:2px 0 } {% if verifications|length == 1 %} ol {padding: 0; list-style-type: none;} {% endif %} a, a:visited { color:#039 } code { padding:0 15px; color:#888; display: block } .columns li { position:relative } .columns li > :first-child { display:block } .columns li > :nth-child(2) { display:block; position:static; left:165px; top:0; white-space:nowrap } .fail {color: red; text-transform: uppercase} .pass {color: green; display: none; text-transform: uppercase} {% endblock %} {% block css_content_wrap %}margin:0 auto; padding:0 5px{% endblock %} {% block media_queries %} @media only screen and (min-width: 320px) { .content-wrap { width:400px } } @media only screen and (min-width: 520px) { .content-wrap { width:500px } } @media only screen and (min-width: 620px) { .content-wrap { width:90% } .columns li > :nth-child(2) { position:absolute } } @media only screen and (min-width: 720px) { .content-wrap { width:70% } } {% endblock %} {% block header_text %}Verify job results{% endblock %} {% block content %}

Job Logs and Job Result files

Job Steps and Results

Table

Each job step has output in all supported formats.

Details

[{{ install.status }}] Tempest installation $ {{ install.cmd }} [{{ reinstall.status }}] Tempest re-installation $ {{ reinstall.cmd }} [{{ installplugin.status }}] Tempest plugin installation $ {{ installplugin.cmd }} [{{ listplugins.status }}] List installed Tempest plugins $ {{ listplugins.cmd }} [{{ discover.status }}] Discovering tests $ {{ discover.cmd }} [{{ genconfig.status }}] Tempest config generation $ {{ genconfig.cmd }} [{{ showconfig.status}}] Show tempest config $ {{ showconfig.cmd }} {% for i in range(verifications|length) %} {% if verifications|length > 1 %}
Verification # {{ i + 1}} {% endif %}
  1. [{{ verifications[i].status }}] Launch of verification $ {{ verifications[i].cmd }}
  2. [{{ verifications[i].result_in_html.status }}] Display raw results in HTML [Output from CLI] $ {{ verifications[i].result_in_html.cmd }}
  3. [{{ verifications[i].result_in_json.status }}] Display raw results in JSON [Output from CLI] $ {{ verifications[i].result_in_json.cmd }}
  4. [{{ verifications[i].show.status }}] Display results table of the verification $ {{ verifications[i].show.cmd }}
  5. [{{ verifications[i].show_detailed.status }}] Display results table of the verification with detailed errors
    $ {{ verifications[i].show_detailed.cmd }}
{% endfor %} {% if compare %} [{{ compare.html.status }}] Compare two verifications and display results in HTML [Output from CLI] $ rally verify compare --uuid-1 <uuid-1> --uuid-2 <uuid-2> --html [{{ compare.json.status }}] Compare two verifications and display results in JSON [Output from CLI] $ rally verify compare --uuid-1 <uuid-1> --uuid-2 <uuid-2> --json [{{ compare.csv.status }}] Compare two verifications and display results in CSV [Output from CLI] $ rally verify compare --uuid-1 <uuid-1> --uuid-2 <uuid-2> --csv {% endif %} [{{ list.status }}] List of all verifications $ {{ list.cmd }}

About Rally

Rally is benchmarking and verification system for OpenStack:

{% endblock %}