2021-10-06 07:01:54 +02:00
|
|
|
---
|
2022-08-05 14:03:38 +02:00
|
|
|
# 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
|
|
|
|
|
2021-10-06 07:01:54 +02:00
|
|
|
- name: install pipx
|
|
|
|
pip:
|
|
|
|
name: pipx
|
|
|
|
extra_args: --user
|
|
|
|
|
|
|
|
##############################################################################
|
|
|
|
- name: ensure application tox is uninstalled
|
|
|
|
community.general.pipx:
|
|
|
|
state: absent
|
|
|
|
name: tox
|
|
|
|
register: uninstall_tox
|
|
|
|
|
|
|
|
- name: install application tox
|
|
|
|
community.general.pipx:
|
|
|
|
name: tox
|
|
|
|
register: install_tox
|
|
|
|
|
2022-08-18 06:44:18 +02:00
|
|
|
- name: set fact latest_tox_version
|
|
|
|
set_fact:
|
|
|
|
latest_tox_version: "{{ install_tox.application.tox.version }}"
|
|
|
|
|
2021-10-06 07:01:54 +02:00
|
|
|
- name: install application tox again
|
|
|
|
community.general.pipx:
|
|
|
|
name: tox
|
|
|
|
register: install_tox_again
|
|
|
|
|
|
|
|
- name: install application tox again force
|
|
|
|
community.general.pipx:
|
|
|
|
name: tox
|
|
|
|
force: yes
|
|
|
|
register: install_tox_again_force
|
|
|
|
|
|
|
|
- name: uninstall application tox
|
|
|
|
community.general.pipx:
|
|
|
|
state: absent
|
|
|
|
name: tox
|
|
|
|
register: uninstall_tox
|
|
|
|
|
|
|
|
- name: check assertions tox
|
|
|
|
assert:
|
|
|
|
that:
|
2022-08-18 06:44:18 +02:00
|
|
|
- install_tox is changed
|
|
|
|
- "'tox' in install_tox.application"
|
|
|
|
- install_tox_again is not changed
|
|
|
|
- install_tox_again_force is changed
|
|
|
|
- uninstall_tox is changed
|
|
|
|
- "'tox' not in uninstall_tox.application"
|
2021-10-06 07:01:54 +02:00
|
|
|
|
|
|
|
##############################################################################
|
|
|
|
- name: install application tox 3.24.0
|
|
|
|
community.general.pipx:
|
|
|
|
name: tox
|
|
|
|
source: tox==3.24.0
|
|
|
|
register: install_tox_324
|
|
|
|
|
|
|
|
- name: reinstall tox 3.24.0
|
|
|
|
community.general.pipx:
|
|
|
|
name: tox
|
|
|
|
state: reinstall
|
|
|
|
register: reinstall_tox_324
|
|
|
|
|
2022-08-09 10:15:51 +02:00
|
|
|
- name: reinstall without name
|
|
|
|
community.general.pipx:
|
|
|
|
state: reinstall
|
|
|
|
register: reinstall_noname
|
|
|
|
ignore_errors: yes
|
|
|
|
|
2022-08-18 06:44:18 +02:00
|
|
|
- name: upgrade tox from 3.24.0
|
2021-10-06 07:01:54 +02:00
|
|
|
community.general.pipx:
|
|
|
|
name: tox
|
|
|
|
state: upgrade
|
|
|
|
register: upgrade_tox_324
|
|
|
|
|
2022-08-09 10:15:51 +02:00
|
|
|
- name: upgrade without name
|
|
|
|
community.general.pipx:
|
|
|
|
state: upgrade
|
|
|
|
register: upgrade_noname
|
|
|
|
ignore_errors: yes
|
|
|
|
|
2021-10-06 07:01:54 +02:00
|
|
|
- name: downgrade tox 3.24.0
|
|
|
|
community.general.pipx:
|
|
|
|
name: tox
|
|
|
|
source: tox==3.24.0
|
|
|
|
force: yes
|
|
|
|
register: downgrade_tox_324
|
|
|
|
|
|
|
|
- name: cleanup tox 3.24.0
|
|
|
|
community.general.pipx:
|
|
|
|
state: absent
|
|
|
|
name: tox
|
|
|
|
register: uninstall_tox_324
|
|
|
|
|
|
|
|
- name: check assertions tox 3.24.0
|
|
|
|
assert:
|
|
|
|
that:
|
2022-08-18 06:44:18 +02:00
|
|
|
- install_tox_324 is changed
|
|
|
|
- "'tox' in install_tox_324.application"
|
|
|
|
- install_tox_324.application.tox.version == '3.24.0'
|
|
|
|
- reinstall_tox_324 is changed
|
|
|
|
- reinstall_tox_324.application.tox.version == '3.24.0'
|
|
|
|
- upgrade_tox_324 is changed
|
|
|
|
- upgrade_tox_324.application.tox.version != '3.24.0'
|
|
|
|
- downgrade_tox_324 is changed
|
|
|
|
- downgrade_tox_324.application.tox.version == '3.24.0'
|
|
|
|
- uninstall_tox_324 is changed
|
|
|
|
- "'tox' not in uninstall_tox_324.application"
|
|
|
|
- upgrade_noname is failed
|
|
|
|
- reinstall_noname is failed
|
|
|
|
|
|
|
|
##############################################################################
|
|
|
|
- name: install application latest tox
|
|
|
|
community.general.pipx:
|
|
|
|
name: tox
|
|
|
|
state: latest
|
|
|
|
register: install_tox_latest
|
|
|
|
|
|
|
|
- name: cleanup tox latest
|
|
|
|
community.general.pipx:
|
|
|
|
state: absent
|
|
|
|
name: tox
|
|
|
|
register: uninstall_tox_latest
|
|
|
|
|
|
|
|
- name: install application tox 3.24.0 for latest
|
|
|
|
community.general.pipx:
|
|
|
|
name: tox
|
|
|
|
source: tox==3.24.0
|
|
|
|
register: install_tox_324_for_latest
|
|
|
|
|
|
|
|
- name: install application latest tox
|
|
|
|
community.general.pipx:
|
|
|
|
name: tox
|
|
|
|
state: latest
|
|
|
|
register: install_tox_latest_with_preinstall
|
|
|
|
|
|
|
|
- name: install application latest tox again
|
|
|
|
community.general.pipx:
|
|
|
|
name: tox
|
|
|
|
state: latest
|
|
|
|
register: install_tox_latest_with_preinstall_again
|
|
|
|
|
|
|
|
- name: install application latest tox
|
|
|
|
community.general.pipx:
|
|
|
|
name: tox
|
|
|
|
state: latest
|
|
|
|
force: true
|
|
|
|
register: install_tox_latest_with_preinstall_again_force
|
|
|
|
|
|
|
|
- name: cleanup tox latest again
|
|
|
|
community.general.pipx:
|
|
|
|
state: absent
|
|
|
|
name: tox
|
|
|
|
register: uninstall_tox_latest_again
|
|
|
|
|
|
|
|
- name: check assertions tox latest
|
|
|
|
assert:
|
|
|
|
that:
|
|
|
|
- install_tox_latest is changed
|
|
|
|
- uninstall_tox_latest is changed
|
|
|
|
- install_tox_324_for_latest is changed
|
|
|
|
- install_tox_324_for_latest.application.tox.version == '3.24.0'
|
|
|
|
- install_tox_latest_with_preinstall is changed
|
|
|
|
- install_tox_latest_with_preinstall.application.tox.version == latest_tox_version
|
|
|
|
- install_tox_latest_with_preinstall_again is not changed
|
|
|
|
- install_tox_latest_with_preinstall_again.application.tox.version == latest_tox_version
|
|
|
|
- install_tox_latest_with_preinstall_again_force is changed
|
|
|
|
- install_tox_latest_with_preinstall_again_force.application.tox.version == latest_tox_version
|
|
|
|
- uninstall_tox_latest_again is changed
|
2021-10-30 08:11:57 +02:00
|
|
|
|
|
|
|
##############################################################################
|
|
|
|
- name: ensure application ansible-lint is uninstalled
|
|
|
|
community.general.pipx:
|
|
|
|
name: ansible-lint
|
|
|
|
state: absent
|
|
|
|
|
|
|
|
- name: install application ansible-lint
|
|
|
|
community.general.pipx:
|
|
|
|
name: ansible-lint
|
|
|
|
register: install_ansible_lint
|
|
|
|
|
|
|
|
- name: inject packages
|
|
|
|
community.general.pipx:
|
|
|
|
state: inject
|
|
|
|
name: ansible-lint
|
|
|
|
inject_packages:
|
|
|
|
- licenses
|
|
|
|
register: inject_pkgs_ansible_lint
|
|
|
|
|
|
|
|
- name: cleanup ansible-lint
|
|
|
|
community.general.pipx:
|
|
|
|
state: absent
|
|
|
|
name: ansible-lint
|
|
|
|
register: uninstall_ansible_lint
|
|
|
|
|
|
|
|
- name: check assertions inject_packages
|
|
|
|
assert:
|
|
|
|
that:
|
2022-08-18 06:44:18 +02:00
|
|
|
- install_ansible_lint is changed
|
|
|
|
- inject_pkgs_ansible_lint is changed
|
|
|
|
- '"ansible-lint" in inject_pkgs_ansible_lint.application'
|
|
|
|
- '"licenses" in inject_pkgs_ansible_lint.application["ansible-lint"]["injected"]'
|
|
|
|
- uninstall_ansible_lint is changed
|
2021-11-30 07:10:20 +01:00
|
|
|
|
|
|
|
##############################################################################
|
|
|
|
- name: install jupyter - not working smoothly in freebsd
|
|
|
|
when: ansible_system != 'FreeBSD'
|
2022-08-18 06:44:18 +02:00
|
|
|
block:
|
|
|
|
- name: ensure application jupyter is uninstalled
|
|
|
|
community.general.pipx:
|
|
|
|
name: jupyter
|
|
|
|
state: absent
|
|
|
|
|
|
|
|
- name: install application jupyter
|
|
|
|
community.general.pipx:
|
|
|
|
name: jupyter
|
|
|
|
install_deps: true
|
|
|
|
register: install_jupyter
|
|
|
|
|
|
|
|
- name: cleanup jupyter
|
|
|
|
community.general.pipx:
|
|
|
|
state: absent
|
|
|
|
name: jupyter
|
|
|
|
|
|
|
|
- name: check assertions
|
|
|
|
assert:
|
|
|
|
that:
|
|
|
|
- install_jupyter is changed
|
|
|
|
- '"ipython" in install_jupyter.stdout'
|