Test CI Templates / test-python-code-quality (3.12) (push) Successful in 4s
Test CI Templates / test-python-code-quality (false, false, basic) (push) Successful in 5s
Test CI Templates / test-python-pytest (false, 3.11) (push) Successful in 4s
Test CI Templates / test-python-pytest (true, 3.12) (push) Successful in 4s
Test CI Templates / test-web-formatting (false, false, 18) (push) Successful in 6s
Test CI Templates / validate-syntax (push) Successful in 9s
Test CI Templates / test-python-code-quality (3.10) (push) Successful in 5s
Test CI Templates / test-python-code-quality (3.11) (push) Successful in 4s
Test CI Templates / test-python-code-quality (false, true, skip-pyupgrade) (push) Successful in 5s
Test CI Templates / test-python-code-quality (true, false, skip-mypy) (push) Successful in 4s
Test CI Templates / test-python-pytest (false, 3.12) (push) Successful in 4s
Test CI Templates / test-python-pytest (true, 3.11) (push) Successful in 4s
Test CI Templates / test-web-formatting (false, false, 20) (push) Successful in 5s
Test CI Templates / test-web-formatting (false, true, 18) (push) Successful in 4s
Test CI Templates / test-web-formatting (false, true, 20) (push) Successful in 4s
Test CI Templates / test-web-formatting (true, false, 18) (push) Successful in 4s
Test CI Templates / test-web-formatting (true, false, 20) (push) Successful in 4s
Test CI Templates / test-web-formatting (true, true, 20) (push) Successful in 5s
Test CI Templates / test-monorepo (push) Successful in 5s
Test CI Templates / test-edge-cases (push) Successful in 4s
Test CI Templates / test-results (push) Successful in 2s
Test CI Templates / test-web-formatting (true, true, 18) (push) Successful in 4s
80 lines
759 B
Plaintext
80 lines
759 B
Plaintext
# 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
|
|
.env
|
|
.venv
|
|
env/
|
|
venv/
|
|
ENV/
|
|
env.bak/
|
|
venv.bak/
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
|
|
# Testing and coverage
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|
|
.tox/
|
|
.cache
|
|
nosetests.xml
|
|
coverage.xml
|
|
*.cover
|
|
.hypothesis/
|
|
|
|
# Type checking
|
|
.mypy_cache/
|
|
.dmypy.json
|
|
dmypy.json
|
|
|
|
# Linting
|
|
.ruff_cache/
|
|
|
|
# Node.js (for web formatting)
|
|
node_modules/
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.temp
|
|
.tmp/
|
|
.temp/
|
|
|
|
# Validation reports (generated files)
|
|
validation-report.md |