Skip to content

Commit

Permalink
script/bootstrap_server
Browse files Browse the repository at this point in the history
  • Loading branch information
balloob committed Dec 17, 2015
1 parent 0369f51 commit 257743f
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions script/bootstrap_server
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 257743f

Please sign in to comment.