diff --git a/plugins/modules/pipx.py b/plugins/modules/pipx.py index 778810be0c..924c5301bb 100644 --- a/plugins/modules/pipx.py +++ b/plugins/modules/pipx.py @@ -175,7 +175,7 @@ EXAMPLES = r""" name: tox state: upgrade -- name: Install or upgrade tox with dependency group 'docs' +- name: Install or upgrade tox with extra 'docs' community.general.pipx: name: tox source: tox[docs] diff --git a/tests/integration/targets/pipx/tasks/main.yml b/tests/integration/targets/pipx/tasks/main.yml index 6b83fa7335..73bd764ac3 100644 --- a/tests/integration/targets/pipx/tasks/main.yml +++ b/tests/integration/targets/pipx/tasks/main.yml @@ -217,14 +217,14 @@ name: tox register: uninstall_tox_2 -- name: install tox with dependency group 'docs' +- name: install tox with extra 'docs' community.general.pipx: name: tox source: tox[docs] state: latest register: install_tox_latest_docs -- name: install tox with dependency group 'docs' again +- name: install tox with extra 'docs' again community.general.pipx: name: tox source: tox[docs]