Merge pull request #365 from GSA/notify-admin-638

notify-admin-638 fail if code coverage below current level of 88%
This commit is contained in:
Steven Reilly
2023-07-28 16:18:48 -04:00
committed by GitHub

View File

@@ -61,7 +61,7 @@ test: ## Run tests and create coverage report
pipenv run flake8 .
pipenv run isort --check-only ./app ./tests
pipenv run coverage run --omit=*/notifications_utils/* -m pytest --maxfail=10
pipenv run coverage report --fail-under=50
pipenv run coverage report --fail-under=88
pipenv run coverage html -d .coverage_cache
.PHONY: freeze-requirements