mirror of
https://github.com/home-assistant/core.git
synced 2025-11-09 19:09:32 +00:00
19 lines
410 B
Bash
Executable File
19 lines
410 B
Bash
Executable File
#!/bin/sh
|
|
# Resolve all dependencies that the application requires to run.
|
|
|
|
# Stop on errors
|
|
set -e
|
|
|
|
cd "$(realpath "$(dirname "$0")/..")"
|
|
|
|
echo "Installing development dependencies..."
|
|
uv pip install \
|
|
-e . \
|
|
-r requirements_test.txt \
|
|
colorlog \
|
|
--constraint homeassistant/package_constraints.txt \
|
|
--upgrade \
|
|
--config-settings editable_mode=compat
|
|
|
|
python3 -m script.translations develop --all
|