sintonia/tools/Makefile

16 lines
205 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
PIP_INSTALL = \
requests \
types-requests
PYLINT_ARG = tools
MYPY_ARG = .
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