pipx: add testcase for upgrade --global (#9170)

pull/9180/head
Alexei Znamensky 2024-11-22 18:36:16 +13:00 committed by GitHub
parent 8078a08f72
commit bf6ae7bf59
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 42 additions and 1 deletions

View File

@ -263,3 +263,6 @@
- name: Include testcase for PR 9009 injectpkg --global
ansible.builtin.include_tasks: testcase-9009-fixglobal.yml
- name: Include testcase for PR 9103 upgrade --global
ansible.builtin.include_tasks: testcase-9103-upgrade-global.yml

View File

@ -5,7 +5,7 @@
- name: Set up environment
environment:
PATH: /usr/local/bin:{{ ansible_env.PATH }}
PATH: /root/.local/bin:/usr/local/bin:{{ ansible_env.PATH }}
block:
- name: Remove global pipx dir
ansible.builtin.file:

View File

@ -0,0 +1,38 @@
---
# Copyright (c) Ansible Project
# 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: 9103-Ensure application hello-world is uninstalled
community.general.pipx:
name: hello-world
state: absent
global: true
- name: 9103-Install application hello-world
community.general.pipx:
name: hello-world
source: hello-world==0.1
global: true
register: install_hw
- name: 9103-Upgrade application hello-world
community.general.pipx:
state: upgrade
name: hello-world
global: true
register: upgrade_hw
- name: 9103-Ensure application pylint is uninstalled
community.general.pipx:
name: pylint
state: absent
global: true
- name: 9103-Assertions
ansible.builtin.assert:
that:
- install_hw is changed
- upgrade_hw is changed
- upgrade_hw.cmd[-3] == "upgrade"
- upgrade_hw.cmd[-2] == "--global"