mirror of
https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git
synced 2024-11-04 15:24:20 +00:00
15 lines
353 B
YAML
15 lines
353 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']
|
||
|
state: present
|
||
|
become: yes
|
||
|
- name: Run tox
|
||
|
command: tox
|
||
|
args:
|
||
|
chdir: '{{ zuul.project.src_dir }}'
|