sintonia/api_client/Makefile

14 lines
294 B
Makefile
Raw 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
2021-09-13 14:44:32 +02:00
PIP_INSTALL := --editable .
PYLINT_ARG := libretime_api_client tests || true
MYPY_ARG := libretime_api_client tests || true
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
lint: .format-check .pylint .mypy
test: .pytest
clean: .clean