mirror of
https://github.com/home-assistant/core.git
synced 2025-12-24 21:06:19 +00:00
12 lines
181 B
Plaintext
Executable File
12 lines
181 B
Plaintext
Executable File
cd "$(dirname "$0")/.."
|
|
|
|
echo "Running tests..."
|
|
|
|
if [ "$1" = "coverage" ]; then
|
|
coverage run -m unittest discover tests
|
|
else
|
|
python3 -m unittest discover tests
|
|
fi
|
|
|
|
script/lint
|