libretime/python_apps/airtime_analyzer/Makefile

17 lines
298 B
Makefile
Raw Normal View History

all: lint test
2021-06-07 23:58:16 +02:00
include ../../tools/python.mk
2021-06-07 23:58:16 +02:00
PIP_INSTALL := --editable .[dev]
PYLINT_ARG := airtime_analyzer tests
2021-09-10 14:41:51 +02:00
MYPY_ARG := airtime_analyzer tests
PYTEST_ARG := --cov=airtime_analyzer tests
2021-06-07 23:58:16 +02:00
2021-09-10 14:41:51 +02:00
lint: .pylint .mypy
2021-06-07 23:58:16 +02:00
fixtures:
bash tests/fixtures/generate.sh
test: fixtures .pytest
clean: .clean