mirror of
https://github.com/esphome/esphome.git
synced 2024-11-09 09:51:20 +01:00
9 lines
140 B
Plaintext
9 lines
140 B
Plaintext
|
#!/usr/bin/env bash
|
||
|
# Set up ESPHome dev environment
|
||
|
|
||
|
set -e
|
||
|
|
||
|
cd "$(dirname "$0")/.."
|
||
|
pip install -r requirements_test.txt
|
||
|
pip install -e .
|