LoRa_APRS_iGate/testlib/Makefile

13 lines
205 B
Makefile
Raw Normal View History

2021-09-22 22:06:11 +02:00
.PHONY: install test debug
2021-09-18 23:07:13 +02:00
default: install test
install:
2021-09-19 00:32:35 +02:00
pip3 install -r requirements.txt
2021-09-18 23:07:13 +02:00
test:
2021-09-19 00:32:35 +02:00
ESP_PORT=/dev/ttyUSB0 pytest tests -v
2021-09-22 22:06:11 +02:00
debug:
ESP_PORT=/dev/ttyUSB0 pytest tests -v --capture=tee-sys