summaryrefslogtreecommitdiffstats
path: root/ansible/test
diff options
context:
space:
mode:
authorBartek Grzybowski <b.grzybowski@partner.samsung.com>2021-04-19 12:16:23 +0200
committerBartek Grzybowski <b.grzybowski@partner.samsung.com>2021-04-19 12:16:23 +0200
commit84c8a4091a6eea2d5f858592cafad763c96843fb (patch)
tree4dbb9560732213ae6fc72a53107e21d0875ae899 /ansible/test
parentd4a60abdc134752b17ff3adb3194164011d420fa (diff)
[MOLECULE 3.3.0] Update dependencies for Molecule environment
Change-Id: Iad65f9dbd057544b77c419c9eb947142bcc062d2 Issue-ID: OOM-2722 Signed-off-by: Bartek Grzybowski <b.grzybowski@partner.samsung.com>
Diffstat (limited to 'ansible/test')
-rwxr-xr-xansible/test/bin/ci-molecule.sh2
-rwxr-xr-xansible/test/bin/install-molecule.sh2
2 files changed, 2 insertions, 2 deletions
diff --git a/ansible/test/bin/ci-molecule.sh b/ansible/test/bin/ci-molecule.sh
index 6dbd93af..0cd4a254 100755
--- a/ansible/test/bin/ci-molecule.sh
+++ b/ansible/test/bin/ci-molecule.sh
@@ -43,7 +43,7 @@ if [ "${MOLECULE_CONTAINER}" == "true" ]; then
else # Install Molecule natively in the target platform
echo "Install Molecule with virtualenv"
source ${LOCAL_PATH}/../bin/install-molecule.sh
- MOLECULE_BINARY="molecule --version"
+ MOLECULE_BINARY=molecule
fi
cd ${ROLE_PATH}
diff --git a/ansible/test/bin/install-molecule.sh b/ansible/test/bin/install-molecule.sh
index 6108cc5a..d672df21 100755
--- a/ansible/test/bin/install-molecule.sh
+++ b/ansible/test/bin/install-molecule.sh
@@ -42,5 +42,5 @@ source ${VENV_PATH}/bin/activate
if [ ! -z ${VIRTUAL_ENV} ]; then
echo "Activated virtual env in ${VIRTUAL_ENV}"
pip -q install -U pip
- pip -q install pyopenssl molecule==3.3.0 ansible==3.2.0 ansible-lint==5.0.7 docker molecule-docker==0.2.4
+ pip -q install molecule==3.3.0 ansible==3.2.0 ansible-lint==5.0.7 docker molecule-docker==0.2.4 pytest-testinfra yamllint flake8
fi