1
0
mirror of https://github.com/home-assistant/core.git synced 2026-05-09 01:59:54 +01:00
Files
core/script/bootstrap
T

11 lines
254 B
Bash
Executable File

#!/bin/sh
# Resolve all dependencies that the application requires to run.
# Stop on errors
set -e
cd "$(dirname "$0")/.."
echo "Installing development dependencies..."
python3 -m pip install tox colorlog pre-commit $(grep mypy requirements_test.txt)