Files
calminer/.gitignore
zwitschi 0550928a2f
All checks were successful
Run Tests / e2e tests (push) Successful in 1m49s
Run Tests / unit tests (push) Successful in 11s
feat: Update CI workflows for Docker image build and deployment, enhance test configurations, and add testing documentation
2025-10-25 21:28:49 +02:00

51 lines
509 B
Plaintext

# temp files
.DS_Store
# IDE files
.vscode/
.idea/
# Python files
__pycache__/
*.pyc
*.pyo
# Virtual environments
env/
.venv/
# environment variables
.env
*.env
# except example files
!config/*.env.example
# github instruction files
.github/instructions/
# Python packaging artifacts
build/
dist/
*.egg-info/
pip-wheel-metadata/
# Test artifacts
.coverage
coverage.xml
htmlcov/
.pytest_cache/
# Mypy cache
.mypy_cache/
# Logs
*.log
logs/
# SQLite database
*.sqlite3
test*.db
# Docker files
.runner