zuul-jobs/playbooks/unittests/pre.yaml
Fabien Boucher 27beae943b Add the tox_install_bindep option to the tox job
If no binary deps are required by a tox run then
give the ability to not run the bindep role.

default is: true

Change-Id: Iacdf54e74126305199c17a932c001bc12c484759
2019-02-11 11:38:29 +01:00

12 lines
281 B
YAML

- hosts: all
tasks:
- name: Install binary dependencies
include_role:
name: bindep
vars:
bindep_dir: "{{ zuul_work_dir }}"
when: tox_install_bindep | default(true)
- name: Run test-setup role
include_role:
name: test-setup