mirror of
https://github.com/meshtastic/python.git
synced 2025-12-30 11:27:53 -05:00
23 lines
311 B
Makefile
23 lines
311 B
Makefile
# unit test
|
|
test:
|
|
pytest
|
|
|
|
# local install
|
|
install:
|
|
pip install .
|
|
|
|
# lint the codebase
|
|
lint:
|
|
pylint meshtastic
|
|
|
|
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
|
|
|
|
FORCE: ;
|