diff options
author | Haibin Huang <haibin.huang@intel.com> | 2019-07-11 08:22:04 +0000 |
---|---|---|
committer | Bin Yang <bin.yang@windriver.com> | 2019-08-15 05:26:26 +0000 |
commit | 6068af3fd3513fb330bdf98f53b63bea909281e1 (patch) | |
tree | 775cca85e8c7fc63e9d1edd2b31ccbde80432a6c /pike/mvn-phase-script.sh | |
parent | 0f9836f80ea187a1cef23f570f8505c54b19fdcf (diff) |
upgrading python2 to python3 for openstack plugin
Issue-ID: MULTICLOUD-702
Change-Id: I9ac26b51a4be7d70d368dd039bfe1b7857114793
Signed-off-by: Haibin Huang <haibin.huang@intel.com>
Diffstat (limited to 'pike/mvn-phase-script.sh')
-rwxr-xr-x | pike/mvn-phase-script.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pike/mvn-phase-script.sh b/pike/mvn-phase-script.sh index ad1d6329..6cc1b2bb 100755 --- a/pike/mvn-phase-script.sh +++ b/pike/mvn-phase-script.sh @@ -53,7 +53,7 @@ run_tox_test() DIR=$(echo "$TOXINI" | rev | cut -f2- -d'/' | rev) cd "${CURDIR}/${DIR}" rm -rf ./venv-tox ./.tox - virtualenv ./venv-tox + virtualenv ./venv-tox --python=python3 source ./venv-tox/bin/activate pip install --upgrade pip pip install --upgrade tox argparse |