diff options
author | Bin Yang <bin.yang@windriver.com> | 2019-08-27 03:52:08 +0000 |
---|---|---|
committer | Bin Yang <bin.yang@windriver.com> | 2019-08-27 04:50:43 +0000 |
commit | 7a31c2e438da2d165f473f7428cee7d2164312df (patch) | |
tree | ace10c3428b58f2d8d2066978964ed80478279d6 /fcaps/mvn-phase-script.sh | |
parent | 4a42f215d7009fc825bbff5b120913f21660ee59 (diff) |
Fix py3 related issue
Change-Id: I2b21aaab2cbf0df11b9940bf62585294dd1ce576
Issue-ID: MULTICLOUD-774
Signed-off-by: Bin Yang <bin.yang@windriver.com>
Diffstat (limited to 'fcaps/mvn-phase-script.sh')
-rwxr-xr-x | fcaps/mvn-phase-script.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fcaps/mvn-phase-script.sh b/fcaps/mvn-phase-script.sh index d09584d2..af3ed299 100755 --- a/fcaps/mvn-phase-script.sh +++ b/fcaps/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 |