summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam Doran <sdoran@redhat.com>2020-07-17 16:58:00 -0400
committerGitHub <noreply@github.com>2020-07-17 15:58:00 -0500
commiteb7597c5cbfa9021dd119d76edbee4c7775f1b32 (patch)
treee3fd7d9a6a84c75a8e42283463a5f73292e9b529
parent9d7594c627df48ebabb91b5b04917179918b6485 (diff)
downloadansible-eb7597c5cbfa9021dd119d76edbee4c7775f1b32.tar.gz
[stable-2.8] Pin psutil version in pids test (#70716)
-rw-r--r--test/integration/targets/pids/tasks/main.yml8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/integration/targets/pids/tasks/main.yml b/test/integration/targets/pids/tasks/main.yml
index c7a5963483..bf6949550a 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 }}'"