mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-08-07 14:44:22 -07:00
[PR #7506/c2e578cb backport][stable-7] pipx: change parameter formatter for pip_args (#7509)
pipx: change parameter formatter for pip_args (#7506)
* change parameter formatter for pip_args
* add changelog frag
(cherry picked from commit c2e578cb14
)
Co-authored-by: Alexei Znamensky <103110+russoz@users.noreply.github.com>
This commit is contained in:
parent
1d6552e005
commit
f764685c53
3 changed files with 28 additions and 1 deletions
|
@ -314,3 +314,28 @@
|
|||
that:
|
||||
- install_tox_sitewide is changed
|
||||
- usrlocaltox.stat.exists
|
||||
|
||||
##############################################################################
|
||||
# Test for issue 7497
|
||||
- name: ensure application pyinstaller is uninstalled
|
||||
community.general.pipx:
|
||||
name: pyinstaller
|
||||
state: absent
|
||||
|
||||
- name: Install Python Package pyinstaller
|
||||
community.general.pipx:
|
||||
name: pyinstaller
|
||||
state: present
|
||||
system_site_packages: true
|
||||
pip_args: "--no-cache-dir"
|
||||
register: install_pyinstaller
|
||||
|
||||
- name: cleanup pyinstaller
|
||||
community.general.pipx:
|
||||
name: pyinstaller
|
||||
state: absent
|
||||
|
||||
- name: check assertions
|
||||
assert:
|
||||
that:
|
||||
- install_pyinstaller is changed
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue