1
0
mirror of https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git synced 2024-09-12 11:27:21 +00:00
os-autoinst-distri-fedora/ci/tox.yaml
Adam Williamson 138ca2bcf6 CI config: update to Fedora 35 and add Python 3.10
Signed-off-by: Adam Williamson <awilliam@redhat.com>
2021-11-12 12:23:54 -08:00

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 }}'