From a042721c821a873d80abf3abbe8d3fed8aeab1c2 Mon Sep 17 00:00:00 2001 From: Alexei Znamensky <103110+russoz@users.noreply.github.com> Date: Sat, 3 May 2025 12:31:04 +1200 Subject: [PATCH] pipx/pipx_info: fix scheduled tests (#10096) --- tests/integration/targets/pipx_info/tasks/main.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/tests/integration/targets/pipx_info/tasks/main.yml b/tests/integration/targets/pipx_info/tasks/main.yml index e3de105d6f..a401e5a798 100644 --- a/tests/integration/targets/pipx_info/tasks/main.yml +++ b/tests/integration/targets/pipx_info/tasks/main.yml @@ -9,10 +9,13 @@ extra_args: --user ############################################################################## -- name: ensure application tox is uninstalled +- name: ensure applications are uninstalled community.general.pipx: + name: "{{ item }}" state: absent - name: tox + loop: + - tox + - pylint - name: retrieve applications (empty) community.general.pipx_info: {}