mirror of
https://github.com/esphome/esphome.git
synced 2024-11-10 01:07:45 +01:00
69879920eb
* Add black Update pre commit Update pre commit add empty line * Format with black
10 lines
174 B
Bash
Executable file
10 lines
174 B
Bash
Executable file
#!/bin/bash
|
|
# Set up ESPHome dev environment
|
|
|
|
set -e
|
|
|
|
cd "$(dirname "$0")/.."
|
|
pip3 install -r requirements.txt -r requirements_test.txt
|
|
pip3 install -e .
|
|
|
|
pre-commit install
|