
Do the things we need to do to get our testing working. Change-Id: Ia9898a2406c601f45b07714b46a7d44632e229e5 Signed-off-by: Paul Belanger <pabelanger@redhat.com>
36 lines
811 B
YAML
36 lines
811 B
YAML
---
|
|
- 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
|