X-Git-Url: https://gerrit.linuxfoundation.org/infra/gitweb?a=blobdiff_plain;f=shell%2Ftox-install.sh;h=02db0c27d0d845074f67a63b7a4fa30dc5849825;hb=a86c6e8d376c95aa00b179fce9d207e61c8f72d0;hp=9e50ead4021223df8f08421b025f4513960dee9c;hpb=9f237eb9ddb18fe6e01cbadea0a75e36a0baf8d7;p=releng%2Fglobal-jjb.git diff --git a/shell/tox-install.sh b/shell/tox-install.sh index 9e50ead4..02db0c27 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,15 +10,13 @@ ############################################################################## 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 -p "$PYTHON_VERSION" "/tmp/v/tox" -# shellcheck source=/tmp/v/tox/bin/activate disable=SC1091 -source "/tmp/v/tox/bin/activate" -pip install --quiet --upgrade "pip==9.0.3" setuptools -pip install --quiet --upgrade argparse detox "tox<3.0.0" tox-pyenv +python3 -m pip install --user --quiet --upgrade tox tox-pyenv virtualenv -echo "----> pip freeze" -pip freeze +# installs are silent, show version details in log +$PYTHON --version +$PYTHON -m pip --version +$PYTHON -m pip freeze