* Add shared python format-check target * Add .format-check to api lint target * Format api code with makefile format target * Add .format-check to tools lint target * Add .format-check to analyzer lint target * Format analyzer code with makefile format target * Add .format-check to celery lint target * Add .format-check to api_client lint target * Format api_client code with makefile format target * Add .format-check to playout lint target * Run CI linting in parallel * Disable isort in pre-commit
17 lines
325 B
Makefile
17 lines
325 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: .format-check .pylint .mypy
|
|
|
|
fixtures:
|
|
bash tests/fixtures/generate.sh
|
|
|
|
test: fixtures .pytest
|
|
clean: .clean
|