Make sure that jjb-cleanup.sh allows unbound vars
[releng/global-jjb.git] / shell / tox-install.sh
index a6e26bc..3aceceb 100644 (file)
@@ -1,17 +1,20 @@
-#!/bin/bash
+#!/bin/bash -l
+# SPDX-License-Identifier: EPL-1.0
+##############################################################################
+# Copyright (c) 2017 The Linux Foundation and others.
+#
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+##############################################################################
 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
 
-virtualenv --quiet "$WORKSPACE/.virtualenvs/tox"
-# shellcheck source=./.virtualenvs/tox/bin/activate disable=SC1091
-source "$WORKSPACE/.virtualenvs/tox/bin/activate"
-PYTHON="$WORKSPACE/.virtualenvs/tox/bin/python"
-$PYTHON -m pip install --quiet --upgrade pip
-$PYTHON -m pip install --quiet --upgrade pipdeptree
-$PYTHON -m pip install --quiet --upgrade tox argparse
+python -m pip install --user --quiet --upgrade argparse detox "tox<3.0.0" tox-pyenv
 
-echo "----> Pip Dependency Tree"
-$PYTHON -m pipdeptree
+echo "----> pip freeze"
+pip freeze