mirror of
https://github.com/esphome/esphome.git
synced 2024-11-05 09:16:46 +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 .
|