sintonia/worker/Makefile

17 lines
332 B
Makefile
Raw Normal View History

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