From 6188f7bc748defc6a155e14d3ee06023045e06d4 Mon Sep 17 00:00:00 2001 From: Kenneth Kehl <@kkehl@flexion.us> Date: Thu, 20 Jul 2023 13:20:22 -0700 Subject: [PATCH] notify-admin-638 adjust coverage report to fail under 96% --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 709e8fe02..8de3e0503 100644 --- a/Makefile +++ b/Makefile @@ -55,7 +55,7 @@ py-lint: ## Run python linting scanners py-test: export NEW_RELIC_ENVIRONMENT=test py-test: ## Run python unit tests pipenv run coverage run --omit=*/notifications_utils/* -m pytest --maxfail=10 tests/ - pipenv run coverage report --fail-under=90 + pipenv run coverage report --fail-under=96 pipenv run coverage html -d .coverage_cache .PHONY: js-lint