From 831af284a50f6f530965b1612171a134f13c99f9 Mon Sep 17 00:00:00 2001 From: Kenneth Kehl <@kkehl@flexion.us> Date: Thu, 20 Jul 2023 13:32:19 -0700 Subject: [PATCH] notify-admin-638 fail if code coverage below current level of 88% --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index c2c83ca1f..de400611b 100644 --- a/Makefile +++ b/Makefile @@ -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