You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
811 B
35 lines
811 B
--- |
|
- hosts: all |
|
tasks: |
|
# TODO(pabelanger): Remove once this lands in our base job in |
|
# project-config. |
|
- name: Execute ensure-output-dirs role |
|
include_role: |
|
name: ensure-output-dirs |
|
|
|
- name: Disable extra wheels mirror |
|
become: true |
|
lineinfile: |
|
dest: /etc/pip.conf |
|
regexp: ^extra-index-url |
|
state: absent |
|
|
|
- name: Execute bindep role |
|
include_role: |
|
name: bindep |
|
vars: |
|
bindep_profile: ansible test |
|
|
|
- name: Setup ensure-tox role |
|
include_role: |
|
name: ensure-tox |
|
vars: |
|
ensure_global_symlinks: true |
|
|
|
- name: Use the latest version of pip |
|
become: true |
|
shell: python3 -m pip install -U pip |
|
|
|
- name: Execute test-setup role |
|
include_role: |
|
name: test-setup
|
|
|