From 458cd11c421f669ae6f961cdec82d02569031f15 Mon Sep 17 00:00:00 2001 From: Mariam Ahhttouche Date: Thu, 12 Feb 2026 10:47:21 +0100 Subject: [PATCH] uv_python module: add integration tests --- .../targets/uv_python/tasks/main.yaml | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) 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