# Test .gitignore file for testing gitignore functionality

# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg

# Virtual environments
venv/
env/
ENV/
.venv/
.env/

# IDE
.vscode/
.idea/
*.swp
*.swo
*~

# OS
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db

# Logs
*.log
logs/
log/

# Temporary files
*.tmp
*.temp
temp/
tmp/

# Cache
cache/
.cache/

# Test artifacts
test_output/
test_results/
coverage/
.coverage
.pytest_cache/

# Backup files
*.bak
*.backup
*~

# Compiled files
*.o
*.a
*.so
*.dll
*.exe

# Archives
*.zip
*.tar.gz
*.rar
*.7z

# Database
*.db
*.sqlite
*.sqlite3

# Configuration (sensitive)
config.ini
secrets.json
.env.local
.env.production

# Custom test ignores
ignored_test_file.txt
ignored_directory/
*.ignore_me