1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2026-03-22 21:29:19 +00:00

uv_python module: add integration tests

This commit is contained in:
Mariam Ahhttouche 2026-02-12 10:47:21 +01:00
parent 3117cba3a9
commit 458cd11c42

View file

@ -28,4 +28,20 @@
- name: Re-install python 3.13.5
uv_python:
version: 3.13.5
state: present
state: present
- name: Remove unexisting python 3.15
uv_python:
version: 3.15
state: absent
- name: Remove globally existing python 3.8
uv_python:
version: 3.8
state: absent
- name: Remove python 3.13.5
uv_python:
version: 3.13.5
state: absent
- name: Remove python 3.13.5 again
uv_python:
version: 3.13.5
state: absent