Files
TicketTracker/.gitignore
laurent 1e5fc97bb7 feat: migration Windows → Ubuntu, stabilisation suite de tests
- Ajout venv Python (.venv) avec pip bootstrap (python3-venv absent)
- Correction OCR Linux : marqueur TTC/TVA tolère la confusion T↔I
  (Tesseract 5.3.4 Linux lit parfois "TIc" au lieu de "TTC")
- test_leclerc.py : skipif si Tesseract absent, xfail pour test de somme
  (précision OCR variable entre plateformes, solution LLM vision prévue)
- Résultat : 77 passent, 1 xfail, 0 échec (vs 78 sur Windows)

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-02-24 18:53:41 +01:00

36 lines
497 B
Plaintext

# Environnement virtuel Python
.venv/
# Cache Python
__pycache__/
*.py[cod]
*.pyo
# Pytest
.pytest_cache/
.coverage
htmlcov/
# IDE
.vscode/
.idea/
*.swp
# OS
.DS_Store
Thumbs.db
# Fichiers d'échantillons sensibles (tickets réels)
samples/*.html
samples/*.pdf
samples/*.eml
# images temporaires extraites des PDF
samples/*.jpg
# Modèles OCR Tesseract (trop lourds pour git, ~14 Mo chacun)
tessdata/
fra.traineddata
# Base de données SQLite (données locales, non versionnées)
data/*.db