From afd3b27d78bfdecf54a95f8f5a17a84a546a6900 Mon Sep 17 00:00:00 2001 From: Mouse Reeve Date: Wed, 6 Jul 2022 09:47:33 -0700 Subject: [PATCH] Adds coverage command to bw-dev --- bw-dev | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bw-dev b/bw-dev index 4dd543c0a..7ecef5c34 100755 --- a/bw-dev +++ b/bw-dev @@ -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 ;;