2021-09-10 13:46:47 +02:00
|
|
|
all: lint
|
|
|
|
|
2021-10-17 02:57:09 +02:00
|
|
|
include ../tools/python.mk
|
2021-09-10 13:46:47 +02:00
|
|
|
|
2022-08-16 13:22:09 +02:00
|
|
|
APP := playout
|
2022-07-27 12:44:18 +02:00
|
|
|
PIP_INSTALL := \
|
|
|
|
--editable ../api-client \
|
|
|
|
--editable ../shared \
|
|
|
|
--editable .[dev]
|
2022-07-16 15:20:50 +02:00
|
|
|
PYLINT_ARG := libretime_playout tests || true
|
|
|
|
MYPY_ARG := libretime_playout tests || true
|
|
|
|
BANDIT_ARG := libretime_playout || true
|
|
|
|
PYTEST_ARG := --cov=libretime_playout tests
|
2021-09-10 13:46:47 +02:00
|
|
|
|
2021-09-13 14:43:18 +02:00
|
|
|
format: .format
|
2022-02-14 17:53:55 +01:00
|
|
|
lint: .format-check .pylint .mypy .bandit
|
2022-06-24 16:42:46 +02:00
|
|
|
test: .pytest
|
2021-09-10 13:46:47 +02:00
|
|
|
clean: .clean
|