This commit is contained in:
Kenneth Kehl
2023-08-10 12:58:52 -07:00
parent afcc324049
commit 318bb01392
5 changed files with 258 additions and 13 deletions

View File

@@ -60,8 +60,8 @@ test: export NEW_RELIC_ENVIRONMENT=test
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 --fail-under=92
pipenv run coverage run -m pytest --maxfail=10
pipenv run coverage report -m --fail-under=92
pipenv run coverage html -d .coverage_cache
.PHONY: freeze-requirements