sintonia/tools/Makefile
2021-09-13 14:21:19 +02:00

13 lines
189 B
Makefile

all: lint test
include python.mk
PIP_INSTALL := -r requirements-dev.txt
PYLINT_ARG := tools
MYPY_ARG := .
PYTEST_ARG := .
format: .format
lint: .pylint .mypy
test: .pytest
clean: .clean