1
0
mirror of https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git synced 2024-09-21 14:37:23 +00:00
os-autoinst-distri-fedora/ci/tox.yaml
Adam Williamson b5ad24c3fc Update list of Python versions to test (tox.ini and CI config)
3.7 is EOL and not in F40, 3.12 is the latest stable.

Signed-off-by: Adam Williamson <awilliam@redhat.com>
2024-07-17 08:55:17 -07:00

15 lines
404 B
YAML

- hosts: all
tasks:
- name: Ensure tox is installed
include_role:
name: ensure-tox
- name: Install all Python versions to test
package:
name: ['python3.8', 'python3.9', 'python3.10', 'python3.11', 'python3.12']
state: present
become: yes
- name: Run tox
command: "{{ tox_executable }}"
args:
chdir: '{{ zuul.project.src_dir }}'