2021-09-02 16:25:06 +02:00
|
|
|
all: lint test
|
|
|
|
|
2021-09-10 13:46:47 +02:00
|
|
|
include python.mk
|
2021-09-02 16:25:06 +02:00
|
|
|
|
2021-09-13 14:22:48 +02:00
|
|
|
PIP_INSTALL =
|
2022-01-22 17:15:30 +01:00
|
|
|
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
|
2021-10-17 16:24:37 +02:00
|
|
|
lint: .format-check .pylint .mypy
|
2021-09-10 13:46:47 +02:00
|
|
|
test: .pytest
|
|
|
|
clean: .clean
|