This commit is contained in:
Kenneth Kehl
2023-08-15 10:35:34 -07:00
parent b9ba7d018b
commit fbf2f99d7b
3 changed files with 117 additions and 11 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 -m --fail-under=94
pipenv run coverage run -m pytest -vv --maxfail=10
pipenv run coverage report -m --fail-under=95
pipenv run coverage html -d .coverage_cache
.PHONY: freeze-requirements