15 lines
300 B
Makefile
15 lines
300 B
Makefile
all: lint test
|
|
|
|
include ../tools/python.mk
|
|
|
|
PIP_INSTALL = --editable .[dev]
|
|
PYLINT_ARG = libretime_shared tests
|
|
MYPY_ARG = libretime_shared
|
|
BANDIT_ARG := libretime_shared
|
|
PYTEST_ARG = --cov=libretime_shared tests
|
|
|
|
format: .format
|
|
lint: .format-check .pylint .mypy .bandit
|
|
test: .pytest
|
|
clean: .clean
|