diff --git a/script/bootstrap_server b/script/bootstrap_server index 8d71e01fa78..ff7ada2ff91 100755 --- a/script/bootstrap_server +++ b/script/bootstrap_server @@ -6,5 +6,16 @@ git submodule update echo "Installing dependencies..." python3 -m pip install --upgrade -r requirements_all.txt +REQ_STATUS=$? + echo "Installing development dependencies.." python3 -m pip install --upgrade flake8 pylint coveralls pytest pytest-cov + +REQ_DEV_STATUS=$? + +if [ $REQ_DEV_STATUS -eq 0 ] +then + exit $REQ_STATUS +else + exit $REQ_DEV_STATUS +fi