Correction de la commande lançant pytest dans le Makefile

La commande précédente ne lançait pas isort sur tous les fichiers .py
This commit is contained in:
Guillaume Ayoub 2018-05-11 18:53:55 +02:00
parent 43021356cb
commit 4396e677a6

View File

@ -18,7 +18,7 @@ check-outdated:
$(PIP) list --outdated --format=columns
test:
$(PYTHON) -m pytest tests.py --flake8 --isort --cov=afpy --cov=tests --cov-report=term-missing
$(PYTHON) -m pytest --flake8 --isort --cov=afpy --cov=tests --cov-report=term-missing
serve:
env FLASK_APP=afpy.py FLASK_ENV=development $(FLASK) run