Add coverage files to .gitignore

Added coverage-related files to .gitignore:
- .coverage (coverage database)
- .coverage.* (coverage data files)
- htmlcov/ (HTML coverage reports)
- coverage.xml (XML coverage reports)
- .cache (pytest cache)

https://claude.ai/code/session_01B9dpKXH8wbD7MPtPBDHrjq
This commit is contained in:
Claude
2026-01-31 01:37:39 +00:00
parent bbf3959242
commit ba2d50e98b

7
.gitignore vendored
View File

@@ -46,6 +46,13 @@ ENV/
*.egg-info/
.pytest_cache/
# Coverage
.coverage
.coverage.*
htmlcov/
coverage.xml
.cache
# Next.js
.next/
out/