2015-09-17 00:35:26 -07:00
|
|
|
cd "$(dirname "$0")/.."
|
|
|
|
|
|
|
|
echo "Installing dependencies..."
|
2015-12-18 00:35:53 -08:00
|
|
|
python3 -m pip install -r requirements_all.txt
|
2015-09-17 00:35:26 -07:00
|
|
|
|
2015-12-17 09:17:24 -08:00
|
|
|
REQ_STATUS=$?
|
|
|
|
|
2015-09-17 00:35:26 -07:00
|
|
|
echo "Installing development dependencies.."
|
2015-12-27 16:57:16 -08:00
|
|
|
python3 -m pip install -r requirements_test.txt
|
2015-12-17 09:17:24 -08:00
|
|
|
|
|
|
|
REQ_DEV_STATUS=$?
|
|
|
|
|
|
|
|
if [ $REQ_DEV_STATUS -eq 0 ]
|
|
|
|
then
|
|
|
|
exit $REQ_STATUS
|
|
|
|
else
|
|
|
|
exit $REQ_DEV_STATUS
|
|
|
|
fi
|