1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-20 02:48:57 +00:00
Files
core/script/bootstrap
2025-09-06 07:22:47 +02:00

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