2021-09-10 13:46:47 +02:00
|
|
|
all: lint test
|
2021-06-08 00:12:14 +02:00
|
|
|
|
2021-09-10 13:46:47 +02:00
|
|
|
include ../../tools/python.mk
|
2021-06-08 00:12:14 +02:00
|
|
|
|
2021-09-10 13:46:47 +02:00
|
|
|
PIP_INSTALL := --editable .[dev]
|
|
|
|
PYLINT_ARG := api_clients tests
|
2021-09-10 14:41:51 +02:00
|
|
|
MYPY_ARG := api_clients tests
|
2021-09-10 13:46:47 +02:00
|
|
|
PYTEST_ARG := --cov=api_clients tests
|
2021-06-08 00:12:14 +02:00
|
|
|
|
2021-09-10 14:41:51 +02:00
|
|
|
lint: .pylint .mypy
|
2021-09-10 13:46:47 +02:00
|
|
|
test: .pytest
|
|
|
|
clean: .clean
|