44 lines
527 B
Plaintext
44 lines
527 B
Plaintext
# Dockerfile.ci copies nothing from the context, but keeping it small makes
|
|
# `docker build` fast and avoids shipping local state into the build.
|
|
|
|
# Virtual environments
|
|
venv/
|
|
.venv/
|
|
|
|
# Python cache and build output
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
build/
|
|
dist/
|
|
*.egg-info/
|
|
*.egg
|
|
|
|
# Git
|
|
.git/
|
|
|
|
# Test/coverage output
|
|
.coverage
|
|
coverage.json
|
|
coverage.xml
|
|
htmlcov/
|
|
cov_info/
|
|
.pytest_cache/
|
|
.tox/
|
|
.mypy_cache/
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
.claude/
|
|
|
|
# Generated docs/images
|
|
docs/images/
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|