1e840057cb
CI/CD Pipeline / Validate Code Quality And Tests (push) Failing after 1m20s
CI/CD Pipeline / Frontend Lint (push) Successful in 2m31s
CI/CD Pipeline / Build & Push Staging (Watchtower auto-deploy) (push) Has been skipped
CI/CD Pipeline / Build Production Runtime Images (push) Has been skipped
CI/CD Pipeline / Staging E2E Tests (push) Has been skipped
CI/CD Pipeline / Staging API Integration Tests (push) Has been skipped
CI/CD Pipeline / Deploy Production (push) Has been skipped
CI/CD Pipeline / Production Browser E2E (push) Has been skipped
fix(ci): 修复 Validate job — black 格式化 + isort 排序 + .cache 排除 + celery mock 路径修复
52 lines
529 B
Plaintext
52 lines
529 B
Plaintext
# Node / frontend
|
|
node_modules/
|
|
.next/
|
|
out/
|
|
dist/
|
|
coverage/
|
|
|
|
# Python / backend
|
|
.cache/
|
|
.venv/
|
|
venv/
|
|
.venv-ci-root/
|
|
__pycache__/
|
|
.pytest_cache/
|
|
.mypy_cache/
|
|
.pytype/
|
|
ruff_cache/
|
|
*.pyc
|
|
|
|
# Env / secrets
|
|
.env
|
|
.env.local
|
|
.env.development
|
|
.env.production
|
|
.env.staging
|
|
!.env.example
|
|
|
|
# OS / editor
|
|
.DS_Store
|
|
Thumbs.db
|
|
.vscode/
|
|
.idea/
|
|
|
|
# Logs / temp
|
|
*.log
|
|
tmp/
|
|
temp/
|
|
|
|
# Build / runtime artifacts
|
|
build/
|
|
.runtime/
|
|
|
|
# SQLite databases
|
|
*.db
|
|
*.sqlite
|
|
*.sqlite3
|
|
|
|
# Tracker temp files
|
|
tracker_tasks.json
|
|
|
|
frontend-v21-ui-prototype-final.html
|