sintonia/playout/Makefile

23 lines
450 B
Makefile
Raw Normal View History

all: lint
2021-10-17 02:57:09 +02:00
include ../tools/python.mk
APP := playout
PIP_INSTALL := \
--editable ../api-client \
--editable ../shared \
--editable .[dev]
2023-03-01 18:21:22 +01:00
PYLINT_ARG := libretime_playout tests
MYPY_ARG := libretime_playout tests || true
BANDIT_ARG := libretime_playout || true
2021-09-13 14:43:18 +02:00
format: .format
2022-02-14 17:53:55 +01:00
lint: .format-check .pylint .mypy .bandit
test: .pytest
2022-12-07 11:42:16 +01:00
test-coverage: .coverage
clean: .clean
2022-10-10 21:30:59 +02:00
.PHONY: snapshot
snapshot: $(VENV)
2023-02-03 12:36:55 +01:00
$(VENV)/bin/pytest --snapshot-update