mirror of
https://github.com/home-assistant/core.git
synced 2025-04-26 02:07:54 +00:00
script/bootstrap_server
This commit is contained in:
parent
0369f5153e
commit
257743facc
@ -6,5 +6,16 @@ git submodule update
|
|||||||
echo "Installing dependencies..."
|
echo "Installing dependencies..."
|
||||||
python3 -m pip install --upgrade -r requirements_all.txt
|
python3 -m pip install --upgrade -r requirements_all.txt
|
||||||
|
|
||||||
|
REQ_STATUS=$?
|
||||||
|
|
||||||
echo "Installing development dependencies.."
|
echo "Installing development dependencies.."
|
||||||
python3 -m pip install --upgrade flake8 pylint coveralls pytest pytest-cov
|
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
|
||||||
|
Loading…
x
Reference in New Issue
Block a user