sintonia/playout/Makefile

24 lines
494 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]
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-13 14:43:18 +02:00
format: .format
2022-02-14 17:53:55 +01:00
lint: .format-check .pylint .mypy .bandit
test: .pytest
clean: .clean
2022-10-10 21:30:59 +02:00
.PHONY: snapshot
snapshot: $(VENV)
source $(VENV)/bin/activate
pytest --snapshot-update