libretime/analyzer/Makefile

18 lines
331 B
Makefile
Raw Normal View History

all: lint test
2021-06-07 23:58:16 +02:00
2021-10-17 02:39:50 +02:00
include ../tools/python.mk
2021-06-07 23:58:16 +02:00
PIP_INSTALL := --editable .[dev]
PYLINT_ARG := libretime_analyzer tests
MYPY_ARG := libretime_analyzer tests
PYTEST_ARG := --cov=libretime_analyzer tests
2021-06-07 23:58:16 +02:00
2021-09-13 14:43:18 +02:00
format: .format
lint: .format-check .pylint .mypy
2021-06-07 23:58:16 +02:00
fixtures:
bash tests/fixtures/generate.sh
test: fixtures .pytest
clean: .clean