X-Git-Url: https://gerrit.linuxfoundation.org/infra/gitweb?a=blobdiff_plain;f=shell%2Ftox-install.sh;h=56bc43a946f74739affe4a46524afa8ea6ff0fdd;hb=d1e8579fac0f3a0aeba74f70b27a06ab3fdad54f;hp=f7f9a9c50e9afe5de6313f002827085aecf228d2;hpb=444423bc66f9771b24eba844719c02e133964d67;p=releng%2Fglobal-jjb.git diff --git a/shell/tox-install.sh b/shell/tox-install.sh index f7f9a9c5..56bc43a9 100644 --- a/shell/tox-install.sh +++ b/shell/tox-install.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/bin/bash -l # SPDX-License-Identifier: EPL-1.0 ############################################################################## # Copyright (c) 2017 The Linux Foundation and others. @@ -10,16 +10,16 @@ ############################################################################## echo "---> tox-install.sh" -# Ensure we fail the job if any steps fail. -# DO NOT set -u as virtualenv's activate script has unbound variables -set -e -o pipefail +# Ensure we fail the job if any steps fail or variables are missing. +# Use -x to show value of $PYTHON in output +set -eux -o pipefail -virtualenv --quiet "/tmp/v/tox" -# shellcheck source=/tmp/v/tox/bin/activate disable=SC1091 -source "/tmp/v/tox/bin/activate" -pip install --quiet --upgrade pip -pip install --quiet --upgrade pipdeptree -pip install --quiet --upgrade argparse detox tox tox-pyenv +# shellcheck disable=SC1090 +source ~/lf-env.sh -echo "----> Pip Dependency Tree" -pipdeptree +lf-activate-venv --venv-file /tmp/.toxenv tox virtualenv urllib3~=1.26.15 + +# installs are silent, show version details in log +$PYTHON --version +$PYTHON -m pip --version +$PYTHON -m pip freeze