- Add pytest-cov as dev dependency - Configure coverage in pyproject.toml - Exclude tests, __pycache__, seed.py from coverage - Enable branch coverage - Add .coverage to gitignore
31 lines
222 B
Text
31 lines
222 B
Text
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
.venv/
|
|
.uv/
|
|
uv.lock
|
|
|
|
# Node
|
|
node_modules/
|
|
.next/
|
|
.turbo/
|
|
test-results/
|
|
|
|
# Env
|
|
.env
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
current_pr.md
|
|
next_pr.md
|
|
|
|
# Notes
|
|
notes/
|
|
.coverage
|