summaryrefslogtreecommitdiffhomepage
path: root/test
diff options
context:
space:
mode:
authorISHIDA Wataru <ishida.wataru@lab.ntt.co.jp>2015-07-02 19:56:44 +0900
committerFUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>2015-07-03 06:29:07 +0900
commitc922dd575ac2c35afe3c6fb3ffea66e9b621c23e (patch)
tree5388ffaf888d9c8a5616d6f23ca69c52332f084a /test
parent6499b8428f2a1455ab69ea15cefdb8274d0377f4 (diff)
test: run pip install in jenkins script
Signed-off-by: ISHIDA Wataru <ishida.wataru@lab.ntt.co.jp>
Diffstat (limited to 'test')
-rw-r--r--test/scenario_test/ci-scripts/jenkins-build-script.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/scenario_test/ci-scripts/jenkins-build-script.sh b/test/scenario_test/ci-scripts/jenkins-build-script.sh
index 0d18f678..e76e967a 100644
--- a/test/scenario_test/ci-scripts/jenkins-build-script.sh
+++ b/test/scenario_test/ci-scripts/jenkins-build-script.sh
@@ -19,6 +19,8 @@ $GOROOT/bin/go get -v
cd $GOBGP/test/scenario_test
set +e
+sudo -E pip install -r pip-requires.txt
+
# route server test
sudo -E python route_server_test.py --use-local --go-path $GOROOT/bin -s --with-xunit
RET1=$?
@@ -47,4 +49,4 @@ mv nosetests.xml ${WS}/nosetest_policy.xml
if [ $RET1 != 0 ] || [ $RET2 != 0 ] || [ $RET3 != 0 ] || [ $RET4 != 0 ] || [ $RET5 != 0 ]; then
exit 1
fi
-exit 0 \ No newline at end of file
+exit 0