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

Remove unecessary integration test for uv_python

This commit is contained in:
Mariam Ahhttouche 2026-03-06 15:17:26 +00:00
parent ca02b76899
commit 58616656ce

View file

@ -8,19 +8,6 @@
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
# SPDX-License-Identifier: GPL-3.0-or-later
- name: Install Python 3.14 when no uv executable exists
uv_python:
version: 3.14
state: present
check_mode: true
register: failed_install
ignore_errors: true
- name: Verify Python 3.14 installation failed
assert:
that:
- failed_install.failed is true
- name: Install uv
shell: |
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/astral-sh/uv/releases/download/0.10.5/uv-installer.sh | sh