test: allow to set python linters to fail per app
This commit is contained in:
parent
b9502bc203
commit
7988b7467b
8 changed files with 16 additions and 16 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue