Always update setuptools/wheel/pip Never fail while linting We use github annotations to impove the code incrementally.
11 lines
153 B
Makefile
11 lines
153 B
Makefile
all: lint test
|
|
|
|
include python.mk
|
|
|
|
PIP_INSTALL := -r requirements-dev.txt
|
|
PYLINT_ARG := tools
|
|
PYTEST_ARG := .
|
|
|
|
lint: .pylint
|
|
test: .pytest
|
|
clean: .clean
|