chore: extend .gitignore + add missing integration test
- .gitignore: add .DS_Store, *.log, *.bak, sailo-claude-backup/, .aw/, *.db, pytest_cache, test artifacts - tests/test_md2doc_integration.py: missed in Task 8 commit
This commit is contained in:
+28
-1
@@ -1,3 +1,30 @@
|
||||
.venv/
|
||||
# Python
|
||||
__pycache__/
|
||||
*.pyc
|
||||
*.pyo
|
||||
.pytest_cache/
|
||||
*.egg-info/
|
||||
.venv/
|
||||
venv/
|
||||
|
||||
# macOS
|
||||
.DS_Store
|
||||
|
||||
# Logs
|
||||
*.log
|
||||
firebase-debug.log
|
||||
|
||||
# Backups
|
||||
*.bak
|
||||
sailo-claude-backup/
|
||||
|
||||
# AW local state (PostgreSQL is source of truth)
|
||||
.aw/
|
||||
|
||||
# Local databases
|
||||
vectors.db
|
||||
*.db
|
||||
|
||||
# Generated test artifacts
|
||||
tests/_tmp_*.docx
|
||||
tests/_tmp_*.pdf
|
||||
|
||||
Reference in New Issue
Block a user