sintonia/tools/Makefile

14 lines
191 B
Makefile
Raw Normal View History

2021-09-02 16:25:06 +02:00
all: lint test
include python.mk
2021-09-02 16:25:06 +02:00
2021-09-13 14:22:48 +02:00
PIP_INSTALL =
PYLINT_ARG = tools || true
MYPY_ARG = . || true
2021-09-13 14:22:20 +02:00
PYTEST_ARG = .
2021-09-07 23:09:53 +02:00
2021-09-13 14:21:19 +02:00
format: .format
lint: .format-check .pylint .mypy
test: .pytest
clean: .clean