mirror of
https://github.com/esphome/esphome.git
synced 2024-11-03 08:50:30 +01:00
9 lines
134 B
Bash
Executable File
9 lines
134 B
Bash
Executable File
#!/bin/bash
|
|
# Set up ESPHome dev environment
|
|
|
|
set -e
|
|
|
|
cd "$(dirname "$0")/.."
|
|
pip3 install -r requirements_test.txt
|
|
pip3 install -e .
|