Fix stackviz data generation

After I177b32622500dab54896fda740080d07f5f65261 we started to use
testrepository from system, which is version 0.0.18 and generate subunit
v1 output, and stackviz doesn't recognize it. So it's required to
transform version 1 to 2 with subunit-1to2 command.
I've tested manually, and the subunit-1to2 works either if you're using
version 0.0.18 or 0.0.20.

Change-Id: Ie7c3f3e734fabdd116cb2421e85c0595e3c56a87
This commit is contained in:
Arx Cruz
2017-03-29 13:06:20 +02:00
parent 5a106026ea
commit aea85712d4

View File

@@ -35,7 +35,7 @@
- name: Collecting data from tempest
shell: >
{% if tempest_format == 'venv' %}source {{ working_dir }}/tempest_git/.venv/bin/activate; {% endif %}
testr last --subunit | stackviz-export {{ tempest_dstat_opt | default('') }} --env --stdin {{ working_dir }}/stackviz_static/data
testr last --subunit | subunit-1to2 | stackviz-export {{ tempest_dstat_opt | default('') }} --env --stdin {{ working_dir }}/stackviz_static/data
args:
chdir: "{{ working_dir }}/tempest"