18 lines
314 B
Makefile
18 lines
314 B
Makefile
all: lint test
|
|
|
|
include ../../tools/python.mk
|
|
|
|
PIP_INSTALL := --editable .[dev]
|
|
PYLINT_ARG := airtime_analyzer tests
|
|
MYPY_ARG := airtime_analyzer tests
|
|
PYTEST_ARG := --cov=airtime_analyzer tests
|
|
|
|
format: .format
|
|
lint: .pylint .mypy
|
|
|
|
fixtures:
|
|
bash tests/fixtures/generate.sh
|
|
|
|
test: fixtures .pytest
|
|
clean: .clean
|