Files
blackroad-operating-system/backend/.gitignore
Claude a11ad269ae Add .venv-tests to .gitignore
The test runner creates a .venv-tests directory for test isolation.
This should not be committed to the repository.
2025-11-18 14:14:50 +00:00

46 lines
362 B
Plaintext

# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
env/
venv/
ENV/
.venv
.venv-tests
# Environment
.env
.env.local
.env.*.local
# Database
*.db
*.sqlite
*.sqlite3
# IDE
.vscode/
.idea/
*.swp
*.swo
*~
# OS
.DS_Store
Thumbs.db
# Testing
.pytest_cache/
.coverage
htmlcov/
.tox/
# Logs
*.log
# Alembic
alembic/versions/*.py
!alembic/versions/__init__.py