aboutsummaryrefslogtreecommitdiffstats
path: root/install.sh
diff options
context:
space:
mode:
authorJingLu5 <lvjing5@huawei.com>2017-04-06 05:02:12 +0000
committerJing Lu <lvjing5@huawei.com>2017-04-06 07:01:27 +0000
commit77f471be8bd681c7a4d41d0549104e231c437e95 (patch)
tree80885f0c440f418cf68d7763dc230836a3420851 /install.sh
parent9c7086ce2f23aa4dd47373208651ff1e560c41de (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> (cherry picked from commit d2cb7ce7331d8da4c3b5b70b09dac49cf65d1710)
Diffstat (limited to 'install.sh')
-rwxr-xr-xinstall.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/install.sh b/install.sh
index 75618dd27..25a4f5960 100755
--- a/install.sh
+++ b/install.sh
@@ -59,7 +59,7 @@ git config --global http.sslVerify false
# install yardstick + dependencies
easy_install -U pip
pip install -r requirements.txt
-pip install .
+pip install -e .
/bin/bash "$(pwd)/api/api-prepare.sh"