2021-09-10 13:46:47 +02:00
|
|
|
all: lint
|
|
|
|
|
2021-10-17 02:46:36 +02:00
|
|
|
include ../tools/python.mk
|
2021-09-10 13:46:47 +02:00
|
|
|
|
2021-09-13 14:44:32 +02:00
|
|
|
PIP_INSTALL := --editable .
|
2022-01-22 16:53:36 +01:00
|
|
|
PYLINT_ARG := libretime_worker || true
|
|
|
|
MYPY_ARG := libretime_worker || true
|
2021-09-10 13:46:47 +02:00
|
|
|
|
2021-09-13 14:43:18 +02:00
|
|
|
format: .format
|
2021-10-17 16:24:37 +02:00
|
|
|
lint: .format-check .pylint .mypy
|
2021-09-10 13:46:47 +02:00
|
|
|
clean: .clean
|