Skip to content

Add new param TEST_CASES_KICKSTART on jinja templates

Michael Hofmann requested to merge add-kicktstart-section-support into master

Created by: agustinhenze

It allows set a kickstart section by test suite e.g.

+      <kickstart>
+        {% block kickstart %}
+        {% for test_case_kickstart in TEST_CASES_KICKSTART %}
+          {% include test_case_kickstart %}
+        {% endfor %}
+        {% endblock kickstart %}
+      </kickstart>

Also I did a small refactor to remove repeated code, please review it by commit.

Merge request reports