mirror of
https://github.com/lora-aprs/LoRa_APRS_iGate.git
synced 2026-05-07 13:37:49 +00:00
12 lines
205 B
Makefile
12 lines
205 B
Makefile
.PHONY: install test debug
|
|
|
|
default: install test
|
|
|
|
install:
|
|
pip3 install -r requirements.txt
|
|
|
|
test:
|
|
ESP_PORT=/dev/ttyUSB0 pytest tests -v
|
|
|
|
debug:
|
|
ESP_PORT=/dev/ttyUSB0 pytest tests -v --capture=tee-sys
|