bring coverage back up to 95%

This commit is contained in:
Kenneth Kehl
2024-05-15 10:20:18 -07:00
parent b572ea2a1b
commit a749b8ca4c
3 changed files with 4 additions and 4 deletions

View File

@@ -81,7 +81,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 --omit=*/notifications_utils/* -m pytest --maxfail=10
poetry run coverage run --omit=*/notifications_utils/*,*/migrations/* -m pytest --maxfail=10
poetry run coverage report -m --fail-under=95
poetry run coverage html -d .coverage_cache