sintonia/python_apps/airtime_analyzer/Makefile
jo ceb40ee216 Use shared python makefile and start linting
Always update setuptools/wheel/pip

Never fail while linting

We use github annotations to impove the code incrementally.
2021-09-10 15:14:46 +02:00

15 lines
257 B
Makefile

all: lint test
include ../../tools/python.mk
PIP_INSTALL := --editable .[dev]
PYLINT_ARG := airtime_analyzer tests
PYTEST_ARG := --cov=airtime_analyzer tests
lint: .pylint
fixtures:
bash tests/fixtures/generate.sh
test: fixtures .pytest
clean: .clean