From eb7597c5cbfa9021dd119d76edbee4c7775f1b32 Mon Sep 17 00:00:00 2001 From: Sam Doran Date: Fri, 17 Jul 2020 16:58:00 -0400 Subject: [PATCH] [stable-2.8] Pin psutil version in pids test (#70716) --- test/integration/targets/pids/tasks/main.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/integration/targets/pids/tasks/main.yml b/test/integration/targets/pids/tasks/main.yml index c7a5963483e..bf6949550a8 100644 --- a/test/integration/targets/pids/tasks/main.yml +++ b/test/integration/targets/pids/tasks/main.yml @@ -3,10 +3,10 @@ # GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) - name: "Installing the psutil module" pip: - name: psutil + name: psutil==5.6.7 -- name: "Checking the empty result" - pids: +- name: "Checking the empty result" + pids: name: "blahblah" register: emptypids @@ -14,7 +14,7 @@ assert: that: - emptypids is not changed - - emptypids.pids == [] + - emptypids.pids == [] - name: "Picking a random process name" command: "echo 'some-random-long-name-{{ 99999999 | random }}'"