sintonia/analyzer/Makefile

19 lines
396 B
Makefile

all: lint test
include ../tools/python.mk
PIP_INSTALL := --editable .[dev]
PYLINT_ARG := libretime_analyzer tests || true
MYPY_ARG := libretime_analyzer tests || true
BANDIT_ARG := libretime_analyzer || true
PYTEST_ARG := --cov=libretime_analyzer tests
format: .format
lint: .format-check .pylint .mypy .bandit
fixtures:
bash tests/fixtures/generate.sh
test: fixtures .pytest
clean: .clean