libretime/worker/Makefile

13 lines
260 B
Makefile
Raw Normal View History

all: lint
2021-10-17 02:46:36 +02:00
include ../tools/python.mk
PIP_INSTALL := --editable .[dev]
PYLINT_ARG := libretime_worker || true
MYPY_ARG := libretime_worker || true
2022-02-14 17:55:09 +01:00
BANDIT_ARG := libretime_worker || true
2021-09-13 14:43:18 +02:00
format: .format
2022-02-14 17:55:09 +01:00
lint: .format-check .pylint .mypy .bandit
clean: .clean