libretime/shared/Makefile

15 lines
283 B
Makefile
Raw Permalink Normal View History

all: lint test
include ../tools/python.mk
PIP_INSTALL = --editable .[dev]
PYLINT_ARG = libretime_shared tests
MYPY_ARG = libretime_shared
2022-02-14 17:54:52 +01:00
BANDIT_ARG := libretime_shared
format: .format
2022-02-14 17:54:52 +01:00
lint: .format-check .pylint .mypy .bandit
test: .pytest
2022-12-07 11:42:16 +01:00
test-coverage: .coverage
clean: .clean