fix code coverage reporting

This commit is contained in:
Kenneth Kehl
2024-03-11 10:34:59 -07:00
parent 8a6cc76d15
commit 6c4c8b075a
2 changed files with 3 additions and 2 deletions

View File

@@ -79,7 +79,7 @@ test: ## Run tests and create coverage report
poetry run black .
poetry run flake8 .
poetry run isort --check-only ./app ./tests
poetry run coverage run -m pytest -vv --maxfail=10
poetry run coverage run --omit=*/notifications_utils/* -m pytest --maxfail=10
poetry run coverage report -m --fail-under=95
poetry run coverage html -d .coverage_cache