sintonia/tools/Makefile
Jonas L 11e8cac471
chore: add contributors listing tool (#2417)
Yet another contributors listing script, sorry...
2023-03-02 22:09:32 +02:00

15 lines
205 B
Makefile

all: lint test
include python.mk
PIP_INSTALL = \
requests \
types-requests
PYLINT_ARG = tools
MYPY_ARG = .
PYTEST_ARG = .
format: .format
lint: .format-check .pylint .mypy
test: .pytest
clean: .clean