12 lines
173 B
Makefile
12 lines
173 B
Makefile
all: lint test
|
|
|
|
include python.mk
|
|
|
|
PIP_INSTALL := -r requirements-dev.txt
|
|
PYLINT_ARG := tools
|
|
MYPY_ARG := .
|
|
PYTEST_ARG := .
|
|
|
|
lint: .pylint .mypy
|
|
test: .pytest
|
|
clean: .clean
|