2022-01-06 14:40:52 +01:00
|
|
|
all: lint test
|
|
|
|
|
|
|
|
include ../tools/python.mk
|
|
|
|
|
|
|
|
PIP_INSTALL = --editable .[dev]
|
2022-01-22 16:53:36 +01:00
|
|
|
PYLINT_ARG = libretime_shared tests || true
|
2022-01-22 16:59:15 +01:00
|
|
|
MYPY_ARG = libretime_shared || true
|
2022-01-06 14:40:52 +01:00
|
|
|
PYTEST_ARG = --cov=libretime_shared tests
|
|
|
|
|
|
|
|
format: .format
|
|
|
|
lint: .pylint .mypy
|
|
|
|
test: .pytest
|
|
|
|
clean: .clean
|