X-Git-Url: https://gerrit.linuxfoundation.org/infra/gitweb?a=blobdiff_plain;f=shell%2Ftox-install.sh;h=9ad332950c6a5629849c5d2f4314add3eb0a323b;hb=7177ce9f9291a1cf2fa99fe6ff75e279ed4465ef;hp=4708e88c374f33053fa4cf609fde848e04f87d39;hpb=1873622e1b5bf98150db6850901d190dd6c35422;p=releng%2Fglobal-jjb.git diff --git a/shell/tox-install.sh b/shell/tox-install.sh index 4708e88c..9ad33295 100644 --- a/shell/tox-install.sh +++ b/shell/tox-install.sh @@ -10,12 +10,32 @@ ############################################################################## 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 -# Tox version is pulled in through detox to mitigate version conflict -python -m pip install --user --quiet --upgrade tox-pyenv +#Python 3.5 and python2 tox in Ubuntu 16.04 workaround +done="False" +if [[ -f /etc/lsb-release ]]; then + # shellcheck disable=SC1091 + source /etc/lsb-release + if [[ $DISTRIB_RELEASE == "16.04" ]]; then + echo "WARNING: Python projects should move to Ubuntu 18.04 to continue receiving support" + python2 -m pip install --user --quiet --upgrade tox tox-pyenv virtualenv more-itertools~=5.0.0 + python3 -m pip install --user --quiet --upgrade tox tox-pyenv virtualenv zipp==1.1.0 + done="True" + fi +fi -echo "----> pip freeze" -pip freeze +if [[ $done != "True" ]]; then + if [[ $PYTHON == "python2" ]]; then + $PYTHON -m pip install --user --quiet --upgrade tox tox-pyenv virtualenv more-itertools~=5.0.0 + else + $PYTHON -m pip install --user --quiet --upgrade tox tox-pyenv virtualenv + fi +fi + +# installs are silent, show version details in log +$PYTHON --version +$PYTHON -m pip --version +$PYTHON -m pip freeze