diff --git a/tests/integration/targets/uv_python/tasks/main.yaml b/tests/integration/targets/uv_python/tasks/main.yaml index e0d4e8c21d..02e3e1795a 100644 --- a/tests/integration/targets/uv_python/tasks/main.yaml +++ b/tests/integration/targets/uv_python/tasks/main.yaml @@ -28,4 +28,20 @@ - name: Re-install python 3.13.5 uv_python: version: 3.13.5 - state: present \ No newline at end of file + 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 \ No newline at end of file