get coverage up to 94%

This commit is contained in:
Kenneth Kehl
2023-08-14 09:04:06 -07:00
parent e1ce20f5e3
commit b4a2f37ca9
3 changed files with 44 additions and 33 deletions

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 -m pytest --maxfail=10
pipenv run coverage report -m --fail-under=92
pipenv run coverage report -m --fail-under=94
pipenv run coverage html -d .coverage_cache
.PHONY: freeze-requirements