LoRa_APRS_iGate/HIL/Makefile
2021-11-07 20:43:05 +00:00

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