mirror of
https://github.com/lora-aprs/LoRa_APRS_iGate.git
synced 2026-01-01 14:20:34 +01:00
10 lines
134 B
Makefile
10 lines
134 B
Makefile
.PHONY: install test
|
|
|
|
default: install test
|
|
|
|
install:
|
|
pip3 install -r requirements.txt
|
|
|
|
test:
|
|
ESP_PORT=/dev/ttyUSB0 pytest tests -v
|