diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-18 05:52:35 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-18 05:52:35 +0000 |
commit | 7fec0b69a082aaeec72fee0612766aa42f6b1b4d (patch) | |
tree | efb569b86ca4da888717f5433e757145fa322e08 /ansible_collections/cyberark/conjur/tests/unit | |
parent | Releasing progress-linux version 7.7.0+dfsg-3~progress7.99u1. (diff) | |
download | ansible-7fec0b69a082aaeec72fee0612766aa42f6b1b4d.tar.xz ansible-7fec0b69a082aaeec72fee0612766aa42f6b1b4d.zip |
Merging upstream version 9.4.0+dfsg.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'ansible_collections/cyberark/conjur/tests/unit')
-rw-r--r-- | ansible_collections/cyberark/conjur/tests/unit/Dockerfile | 5 | ||||
-rw-r--r-- | ansible_collections/cyberark/conjur/tests/unit/plugins/lookup/test_conjur_variable.py | 2 |
2 files changed, 5 insertions, 2 deletions
diff --git a/ansible_collections/cyberark/conjur/tests/unit/Dockerfile b/ansible_collections/cyberark/conjur/tests/unit/Dockerfile index 66e584669..677862d96 100644 --- a/ansible_collections/cyberark/conjur/tests/unit/Dockerfile +++ b/ansible_collections/cyberark/conjur/tests/unit/Dockerfile @@ -1,5 +1,8 @@ ARG PYTHON_VERSION -FROM python:${PYTHON_VERSION} +FROM python:${PYTHON_VERSION}-slim + +RUN apt-get update && \ + apt-get install -y git ARG ANSIBLE_VERSION RUN pip install https://github.com/ansible/ansible/archive/${ANSIBLE_VERSION}.tar.gz --disable-pip-version-check diff --git a/ansible_collections/cyberark/conjur/tests/unit/plugins/lookup/test_conjur_variable.py b/ansible_collections/cyberark/conjur/tests/unit/plugins/lookup/test_conjur_variable.py index 7a0db1e12..995adf2da 100644 --- a/ansible_collections/cyberark/conjur/tests/unit/plugins/lookup/test_conjur_variable.py +++ b/ansible_collections/cyberark/conjur/tests/unit/plugins/lookup/test_conjur_variable.py @@ -2,7 +2,7 @@ from __future__ import absolute_import, division, print_function __metaclass__ = type from unittest import TestCase -from unittest.mock import call, MagicMock, patch +from unittest.mock import MagicMock, patch from ansible.errors import AnsibleError from ansible.plugins.loader import lookup_loader |