libretime/api-client/Makefile

17 lines
331 B
Makefile
Raw Permalink Normal View History

all: lint test
2021-06-08 00:12:14 +02:00
2021-10-17 02:49:52 +02:00
include ../tools/python.mk
2021-06-08 00:12:14 +02:00
PIP_INSTALL := \
--editable ../shared \
--editable .[dev]
PYLINT_ARG := libretime_api_client tests
MYPY_ARG := libretime_api_client tests
BANDIT_ARG := libretime_api_client
2021-06-08 00:12:14 +02:00
2021-09-13 14:43:18 +02:00
format: .format
lint: .format-check .pylint .mypy .bandit
test: .pytest
2022-12-07 11:42:16 +01:00
test-coverage: .coverage
clean: .clean