tripleo-quickstart-extras/roles/validate-tempest/templates/run-tempest.sh.j2
Harry Rybacki ff864cf9bd Add doc templating to validate-tempest role
Change-Id: I0b2797f1df3f840d8041cf94a946cc0e78cbadc9
2017-01-16 17:09:07 -05:00

18 lines
605 B
Django/Jinja

### --start_docs
## Run tempest
## -----------
## ::
{% if tempest_format == "venv" %}./tools/with_venv.sh {% endif %}
./tools/run-tests.sh {{ test_regex }} {% if skip_file_src != '' %}--skip-file {{ working_dir }}/{{ skip_file }}{% endif %}
{% if tempest_workers is defined %} --concurrency={{ tempest_workers }} {% endif %}
{% if tempest_isolated|bool %} --isolated {% endif %}
{% if tempest_tests_file is defined %} --load-list={{ tempest_tests_file }} {% endif %}
{% if tempest_until_failure|bool %} --until-failure {% endif %}
{% if tempest_failing|bool %} --failing {% endif %}
### --stop_docs