fix commands

This commit is contained in:
Andreas Zweili 2022-02-08 14:51:14 +01:00
parent 37315422d6
commit e9d6b8aad1
1 changed files with 2 additions and 2 deletions

View File

@ -71,7 +71,7 @@ init:
( \
source venv/bin/activate; \
export DJANGO_SETTINGS_MODULE=network_inventory.settings.local; \
python manage.py loaddata network_inventory.yaml
python manage.py loaddata network_inventory.yaml; \
)
.PHONY: test
@ -87,5 +87,5 @@ debug:
( \
source venv/bin/activate; \
export DJANGO_SETTINGS_MODULE=network_inventory.settings.local; \
pytest --pdb --nomigrations --cov=. --cov-report=html
pytest --pdb --nomigrations --cov=. --cov-report=html; \
)