mirror of
https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git
synced 2024-11-03 15:04:22 +00:00
138ca2bcf6
Signed-off-by: Adam Williamson <awilliam@redhat.com>
15 lines
385 B
YAML
15 lines
385 B
YAML
- hosts: all
|
|
tasks:
|
|
- name: Ensure tox is installed
|
|
include_role:
|
|
name: ensure-tox
|
|
- name: Install all Python versions to test
|
|
package:
|
|
name: ['python37', 'python38', 'python39', 'python310']
|
|
state: present
|
|
become: yes
|
|
- name: Run tox
|
|
command: "{{ tox_executable }}"
|
|
args:
|
|
chdir: '{{ zuul.project.src_dir }}'
|