don't count log lines as code

This commit is contained in:
Kenneth Kehl
2025-07-08 10:44:02 -07:00
parent ff6ffa5ac0
commit be656af5f6

View File

@@ -104,8 +104,8 @@ test: ## Run tests and create coverage report
poetry run isort ./app ./tests
poetry run coverage run --omit=*/migrations/*,*/tests/* -m pytest --maxfail=10
## TODO set this back to 95 asap
poetry run coverage report -m --fail-under=94
poetry run coverage report -m --fail-under=95
poetry run coverage html -d .coverage_cache
.PHONY: test-debug