mirror of
https://github.com/esphome/esphome.git
synced 2024-11-05 09:16:46 +01:00
69879920eb
* Add black Update pre commit Update pre commit add empty line * Format with black
11 lines
174 B
Bash
Executable File
11 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
|