Adds coverage command to bw-dev

This commit is contained in:
Mouse Reeve 2022-07-06 09:47:33 -07:00
parent e8a570b687
commit afd3b27d78

3
bw-dev
View file

@ -103,6 +103,9 @@ case "$CMD" in
pytest)
runweb pytest --no-cov-on-fail "$@"
;;
pytest_coverage_report)
runweb pytest -n 3 --cov-report term-missing "$@"
;;
collectstatic)
runweb python manage.py collectstatic --no-input
;;