Some checks are pending
Container / meta (analyzer) (push) Waiting to run
Container / meta (api) (push) Waiting to run
Container / meta (legacy) (push) Waiting to run
Container / meta (nginx) (push) Waiting to run
Container / meta (playout) (push) Waiting to run
Container / meta (worker) (push) Waiting to run
Container / build (push) Blocked by required conditions
Project / pre-commit (push) Waiting to run
Project / test-tools (push) Waiting to run
Release-Please / release-please (push) Waiting to run
16 lines
205 B
Makefile
16 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
|