test: allow to set python linters to fail per app

This commit is contained in:
jo 2022-01-22 16:53:36 +01:00 committed by Kyle Robbertze
parent b9502bc203
commit 7988b7467b
8 changed files with 16 additions and 16 deletions

View file

@ -43,12 +43,12 @@ install: $(VENV)
.PHONY: .pylint
.pylint: $(VENV)
source $(VENV)/bin/activate
pylint --jobs=$(CPU_CORES) --output-format=colorized $(PYLINT_ARG) || true
pylint --jobs=$(CPU_CORES) --output-format=colorized $(PYLINT_ARG)
.PHONY: .mypy
.mypy: $(VENV)
source $(VENV)/bin/activate
mypy $(MYPY_ARG) || true
mypy $(MYPY_ARG)
.PHONY: .pytest
.pytest: $(VENV)