mirror of
https://github.com/lora-aprs/LoRa_APRS_iGate.git
synced 2026-01-10 02:30:06 +01:00
13 lines
248 B
Makefile
13 lines
248 B
Makefile
.PHONY: install test debug
|
|
|
|
default: install test
|
|
|
|
install:
|
|
pip3 install -r requirements.txt
|
|
|
|
test:
|
|
ESP_PORT=/dev/ttyUSB0 pytest tests -v --log-cli-level=INFO
|
|
|
|
debug:
|
|
ESP_PORT=/dev/ttyUSB0 pytest tests -v --capture=tee-sys --log-cli-level=DEBUG
|