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