correct the test command

This commit is contained in:
Andreas Zweili 2020-11-30 18:49:20 +01:00
parent 86b2c94143
commit 41a7cefe24
1 changed files with 2 additions and 2 deletions

View File

@ -11,10 +11,10 @@ init:
docker-compose -f docker-compose-development.yml run web python manage.py loaddata network_inventory.yaml
test:
docker-compose -f docker-compose-development.yml run web pytest -nauto --nomigrations --cov=. --cov-report=html
docker-compose -f docker-compose-development.yml run backend pytest -nauto --nomigrations --cov=. --cov-report=html
debug:
docker-compose -f docker-compose-development.yml run web pytest --pdb --nomigrations --cov=. --cov-report=html
docker-compose -f docker-compose-development.yml run backend pytest --pdb --nomigrations --cov=. --cov-report=html
local:
python3 -m venv venv