mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-12 05:30:33 -07:00
* pipx_info: factored process_list out * pipx_info: no need to pass param to _list * pipx_info: minor adjustment * pipx mod utils: make_process_list parameters * fix test for state=install_all * fix assertions * pipx tests: fix detection of pipx 1.7.0 * pipx: use make_process_output * add testcase * pipx: remove import json * pinned in pipx list is not always there * Update plugins/modules/pipx_info.py Co-authored-by: Felix Fontein <felix@fontein.de> * remove ensurepath and --user from pipx install * add changelog frag * Update changelogs/fragments/9044-pipx-fixes.yml Co-authored-by: Felix Fontein <felix@fontein.de> * Update changelogs/fragments/9044-pipx-fixes.yml * Update changelogs/fragments/9044-pipx-fixes.yml Co-authored-by: Felix Fontein <felix@fontein.de> * Update changelogs/fragments/9044-pipx-fixes.yml Co-authored-by: Felix Fontein <felix@fontein.de> --------- Co-authored-by: Felix Fontein <felix@fontein.de>
30 lines
735 B
YAML
30 lines
735 B
YAML
---
|
|
# 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: 9009-Ensure application pylint is uninstalled
|
|
community.general.pipx:
|
|
name: pylint
|
|
state: absent
|
|
global: true
|
|
|
|
- name: 9009-Install application pylint
|
|
community.general.pipx:
|
|
name: pylint
|
|
global: true
|
|
register: install_pylint
|
|
|
|
- name: 9009-Inject packages
|
|
community.general.pipx:
|
|
state: inject
|
|
name: pylint
|
|
global: true
|
|
inject_packages:
|
|
- licenses
|
|
|
|
- name: 9009-Ensure application pylint is uninstalled
|
|
community.general.pipx:
|
|
name: pylint
|
|
state: absent
|
|
global: true
|