798a175ac9
- use python_ver for pip install - conditional tox<=2.5.0 for py <=2 Change-Id: I838234cd908382095708fae474d0204b6e13fdf3
19 lines
454 B
YAML
19 lines
454 B
YAML
- name: Tobiko Tests Main
|
|
hosts: undercloud
|
|
gather_facts: yes
|
|
any_errors_fatal: yes
|
|
vars:
|
|
python_ver: python{{ansible_python.version.major}}
|
|
tasks:
|
|
|
|
- name: Install Tobiko
|
|
include_tasks: tasks/install.yml
|
|
|
|
- name: Set up environment configurations
|
|
include_tasks: tasks/configure.yml
|
|
|
|
- name: Run Tobiko
|
|
include_tasks: tasks/run.yml
|
|
when:
|
|
- test.tests is defined
|