Skip to content
Snippets Groups Projects
Commit 8da7ce8a authored by Deaktivert bruker's avatar Deaktivert bruker
Browse files

build: run Mypy static analysis as part of "make test"

Fixes: GREG-13
parent 0b2f2d53
No related branches found
No related tags found
1 merge request!4Fix Mypy static analysis problems
MYPY ?= mypy
PIP ?= pip -q
POETRY ?= poetry
PYTHON ?= python3.9
VENV ?= venv
mypy = $(MYPY) --config-file mypy.ini
pip = python -m $(PIP)
poetry = python -m $(POETRY)
venv = . $(VENV)/bin/activate &&
......@@ -21,6 +23,7 @@ $(VENV)/touchfile:
.PHONY: test
test: $(VENV)
$(venv) $(mypy) -p greg
$(venv) python manage.py test
.PHONY: deps
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment