Files
python/Makefile
2021-12-22 12:11:27 -08:00

25 lines
417 B
Makefile

# unit test
test:
pytest
# local install
install:
pip install .
# lint the codebase
lint:
pylint meshtastic
# run the coverage report and open results in a browser
cov:
pytest --cov-report html --cov=meshtastic
# on mac, this will open the coverage report in a browser
open htmlcov/index.html
# run cli examples
examples: FORCE
pytest -mexamples
# Makefile hack to get the examples to always run
FORCE: ;