# Python / venv
__pycache__/
*.py[cod]
*.egg-info/
.eggs/
build/
dist/
.venv/
venv/
.pytest_cache/

# Credentials — the whole credential story is "put secrets in .env";
# it must never be committable.
.env
.env.*
!.env.example

# Runtime output
reports/
scenarios/
!scenarios/.gitkeep

# Playwright
.cache/

# OS / editor
.DS_Store
.idea/
.vscode/
