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