2021-09-10 13:46:47 +02:00
|
|
|
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
|
|
|
|
2022-02-22 18:19:16 +01:00
|
|
|
PIP_INSTALL := --editable .[dev]
|
2022-01-22 16:53:36 +01:00
|
|
|
PYLINT_ARG := libretime_api_client tests || true
|
|
|
|
MYPY_ARG := libretime_api_client tests || true
|
2022-02-14 17:53:35 +01:00
|
|
|
BANDIT_ARG := libretime_api_client || true
|
2021-12-24 00:21:18 +01:00
|
|
|
PYTEST_ARG := --cov=libretime_api_client tests
|
2021-06-08 00:12:14 +02:00
|
|
|
|
2021-09-13 14:43:18 +02:00
|
|
|
format: .format
|
2022-02-14 17:53:35 +01:00
|
|
|
lint: .format-check .pylint .mypy .bandit
|
2021-09-10 13:46:47 +02:00
|
|
|
test: .pytest
|
|
|
|
clean: .clean
|