mirror of
https://github.com/home-assistant/core.git
synced 2025-04-25 17:57:55 +00:00
11 lines
212 B
Bash
Executable File
11 lines
212 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 test dependencies..."
|
|
python3 -m pip install tox colorlog pre-commit
|