mirror of
https://github.com/rocky-linux/os-autoinst-distri-rocky.git
synced 2024-11-01 03:21:24 +00:00
85be99830b
This change fix the ci by using the new tox installation provided by the latest https://opendev.org/zuul/zuul-jobs.
15 lines
372 B
YAML
15 lines
372 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_executable }}"
|
|
args:
|
|
chdir: '{{ zuul.project.src_dir }}'
|