X-Git-Url: https://gerrit.linuxfoundation.org/infra/gitweb?a=blobdiff_plain;f=shell%2Ftox-install.sh;h=e4bb50dbea9edfc2ba5b57386994d78c4fe2ca92;hb=refs%2Ftags%2Fv0.85.0;hp=3aceceb213e5d97c797f19d15de880f206ac4501;hpb=066055a8b0c03ba248cc8806ac8f0e3d1a08828a;p=releng%2Fglobal-jjb.git diff --git a/shell/tox-install.sh b/shell/tox-install.sh index 3aceceb2..e4bb50db 100644 --- a/shell/tox-install.sh +++ b/shell/tox-install.sh @@ -10,11 +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 -python -m pip install --user --quiet --upgrade argparse detox "tox<3.0.0" tox-pyenv +# shellcheck disable=SC1090 +source ~/lf-env.sh -echo "----> pip freeze" -pip freeze +lf-activate-venv --venv-file /tmp/.toxenv tox virtualenv + +# installs are silent, show version details in log +$PYTHON --version +$PYTHON -m pip --version +$PYTHON -m pip freeze