mirror of
https://github.com/esphome/aioesphomeapi.git
synced 2024-10-31 08:39:41 +01:00
12 lines
190 B
Bash
Executable File
12 lines
190 B
Bash
Executable File
#!/bin/bash
|
|
|
|
cd "$(dirname "$0")/.."
|
|
set -euxo pipefail
|
|
|
|
black --safe aioesphomeapi tests
|
|
pylint aioesphomeapi
|
|
flake8 aioesphomeapi
|
|
isort aioesphomeapi tests
|
|
mypy aioesphomeapi
|
|
pytest tests
|