mirror of
https://github.com/home-assistant/core.git
synced 2025-04-27 18:57:57 +00:00
19 lines
343 B
Plaintext
Executable File
19 lines
343 B
Plaintext
Executable File
cd "$(dirname "$0")/.."
|
|
|
|
echo "Installing dependencies..."
|
|
python3 -m pip install -q -r requirements_all.txt
|
|
|
|
REQ_STATUS=$?
|
|
|
|
echo "Installing development dependencies.."
|
|
python3 -m pip install -q 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
|