summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBartek Grzybowski <b.grzybowski@partner.samsung.com>2022-02-23 14:30:45 +0100
committerBartek Grzybowski <b.grzybowski@partner.samsung.com>2022-02-23 14:30:45 +0100
commit9a6051a3c0c9e0cefd4e22e1f4ce42e426bc90a1 (patch)
tree5543aa379e530458969607e95b3a3038227a1cf3
parentfd62ba6ae579ad4024003590b8e6cf5407c5dd7b (diff)
[MOLECULE] Pin the markupsafe pip package in virtualenv
Pinning to an older version is required by a backward incompatible change introduced in the library, details in the bug report at https://github.com/pallets/markupsafe/issues/284 Change-Id: Ia291d70e0ca734a2149ee81c6168d82e1d7d7ebe Issue-ID: OOM-2927 Signed-off-by: Bartek Grzybowski <b.grzybowski@partner.samsung.com>
-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 87de8d85..d18f70f7 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 molecule==3.3.0 Jinja2==2.11.3 ansible-base==2.10.8 ansible==3.2.0 docker molecule-docker==0.2.4 pytest-testinfra yamllint flake8
+ pip -q install molecule==3.3.0 Jinja2==2.11.3 ansible-base==2.10.8 ansible==3.2.0 docker molecule-docker==0.2.4 pytest-testinfra yamllint flake8 markupsafe==2.0.1
fi