mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-10-22 03:53:59 -07:00
Some checks failed
EOL CI / EOL Sanity (Ⓐ2.15) (push) Has been cancelled
EOL CI / EOL Units (Ⓐ2.15+py2.7) (push) Has been cancelled
EOL CI / EOL Units (Ⓐ2.15+py3.10) (push) Has been cancelled
EOL CI / EOL Units (Ⓐ2.15+py3.5) (push) Has been cancelled
EOL CI / EOL I (Ⓐ2.15+alpine3+py:azp/posix/1/) (push) Has been cancelled
EOL CI / EOL I (Ⓐ2.15+alpine3+py:azp/posix/2/) (push) Has been cancelled
EOL CI / EOL I (Ⓐ2.15+alpine3+py:azp/posix/3/) (push) Has been cancelled
EOL CI / EOL I (Ⓐ2.15+fedora37+py:azp/posix/1/) (push) Has been cancelled
EOL CI / EOL I (Ⓐ2.15+fedora37+py:azp/posix/2/) (push) Has been cancelled
EOL CI / EOL I (Ⓐ2.15+fedora37+py:azp/posix/3/) (push) Has been cancelled
nox / Run extra sanity tests (push) Has been cancelled
pipx: review tests (#10822)
(cherry picked from commit 0911db457e
)
Co-authored-by: Alexei Znamensky <103110+russoz@users.noreply.github.com>
30 lines
751 B
YAML
30 lines
751 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 pycowsay is uninstalled
|
|
community.general.pipx:
|
|
name: pycowsay
|
|
state: absent
|
|
global: true
|
|
|
|
- name: 9009-Install application pycowsay
|
|
community.general.pipx:
|
|
name: pycowsay
|
|
global: true
|
|
register: install_pycowsay
|
|
|
|
- name: 9009-Inject packages
|
|
community.general.pipx:
|
|
state: inject
|
|
name: pycowsay
|
|
global: true
|
|
inject_packages:
|
|
- licenses
|
|
|
|
- name: 9009-Ensure application pycowsay is uninstalled
|
|
community.general.pipx:
|
|
name: pycowsay
|
|
state: absent
|
|
global: true
|