summaryrefslogtreecommitdiffstats
path: root/ansible/test/bin
diff options
context:
space:
mode:
authorBartek Grzybowski <b.grzybowski@partner.samsung.com>2020-12-17 12:54:31 +0100
committerBartek Grzybowski <b.grzybowski@partner.samsung.com>2020-12-17 12:54:31 +0100
commit13d0703af7844652face28a19e00dab8880558a2 (patch)
tree077ad37eac3f5e6327b7c1bcb199b1bfa3e1c339 /ansible/test/bin
parentb74f01fdd376330509233b0146b90c0efb782d98 (diff)
Fix Molecule framework runner setup scripts
Ansible-lint release has to be set explicitly as the one installed by default breaks the linter execution. Change-Id: Id824fb3f4ae94cf8608736bbebb1809568193050 Issue-ID: OOM-2650 Signed-off-by: Bartek Grzybowski <b.grzybowski@partner.samsung.com>
Diffstat (limited to 'ansible/test/bin')
-rwxr-xr-xansible/test/bin/install-molecule.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/ansible/test/bin/install-molecule.sh b/ansible/test/bin/install-molecule.sh
index 7857e0c8..ab6de436 100755
--- a/ansible/test/bin/install-molecule.sh
+++ b/ansible/test/bin/install-molecule.sh
@@ -41,5 +41,5 @@ source ${VENV_PATH}/bin/activate
# Install Molecule
if [ ! -z ${VIRTUAL_ENV} ]; then
echo "Activated virtual env in ${VIRTUAL_ENV}"
- pip -q install molecule==2.20 ansible==2.7.8 docker pyopenssl
+ pip -q install molecule==2.20 ansible==2.7.8 ansible-lint==4.2.0 docker pyopenssl
fi