diff options
author | JingLu5 <lvjing5@huawei.com> | 2017-04-06 05:02:12 +0000 |
---|---|---|
committer | JingLu5 <lvjing5@huawei.com> | 2017-04-06 05:02:12 +0000 |
commit | d2cb7ce7331d8da4c3b5b70b09dac49cf65d1710 (patch) | |
tree | b80af4a66e8d59ac49a766aa9902801772e4c68f /tests/ci/yardstick-verify | |
parent | 571ee6afca03120c393def421eb35a466f9a940b (diff) |
pip install yardstick failed in Apex
JIRA: YARDSTICK-625
In Apex, yardstick uninstall and install via pip failed.
This bug blocks yardstick CI jobs.
This patch enables pip install yardstick in editable mode.
So the install_yardstick() in yardstick_verify is unnecessary.
Change-Id: If290dac5fee5584601064ae9753ae2340643d3ca
Signed-off-by: JingLu5 <lvjing5@huawei.com>
Diffstat (limited to 'tests/ci/yardstick-verify')
-rwxr-xr-x | tests/ci/yardstick-verify | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/tests/ci/yardstick-verify b/tests/ci/yardstick-verify index 2986c9f2f..096ea534f 100755 --- a/tests/ci/yardstick-verify +++ b/tests/ci/yardstick-verify @@ -97,18 +97,6 @@ error_exit() set -o errexit set -o pipefail -install_yardstick() -{ - echo - echo "========== Installing yardstick ==========" - - # uninstall previous version - pip uninstall -y yardstick || true - - # Install yardstick - pip install . -} - install_storperf() { # Install Storper on huawei-pod1 @@ -320,9 +308,6 @@ main() echo " external network: $net" done - # install yardstick - install_yardstick - source $YARDSTICK_REPO_DIR/tests/ci/clean_images.sh trap "error_exit" EXIT SIGTERM |