LoRa_APRS_iGate/HIL/Makefile
Peter Buchegger aa98b87448 🐛 fix environment variables in makefile
fixing missing environment variables in makefile
2021-11-07 22:12:52 +00:00

13 lines
366 B
Makefile

.PHONY: install test debug
default: install test
install:
pip3 install -r requirements.txt
test:
ESP_PORT=/dev/ttyUSB0 ESP_CONFIG_PATH=testconfig ESP_CONFIG_FILE=testconfig.json pytest tests -v --log-cli-level=INFO
debug:
ESP_PORT=/dev/ttyUSB0 ESP_CONFIG_PATH=testconfig ESP_CONFIG_FILE=testconfig.json pytest tests -v --capture=tee-sys --log-cli-level=DEBUG