1
0
mirror of https://github.com/home-assistant/core.git synced 2025-05-11 17:39:17 +00:00

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)