73454c0787
- New config/deploy-targets.yaml: centralized deploy target config - Rewrite auto-deploy in _handle_pr_closed to use YAML config - Add _send_deploy_failure_mail helper (reuses deploy_failure template) - Support post_deploy command list (not just pm2 restart) - Docs-only changes skip post_deploy - Add pyyaml to pyproject.toml dependencies - Update design doc §23 with new architecture
22 lines
561 B
TOML
22 lines
561 B
TOML
[project]
|
|
name = "sanguo-moziplus-v2"
|
|
version = "3.0.0"
|
|
description = "AI Native DevOps Platform v2 - Blackboard Architecture"
|
|
requires-python = ">=3.9"
|
|
dependencies = [
|
|
"pyyaml",
|
|
]
|
|
|
|
[tool.pytest.ini_options]
|
|
asyncio_mode = "auto"
|
|
testpaths = ["tests"]
|
|
markers = [
|
|
"integration: integration tests (requires RUN_INTEGRATION=1)",
|
|
"e2e: end-to-end tests with real daemon + Agent (requires RUN_INTEGRATION=1)",
|
|
]
|
|
# Default deselection of integration/e2e handled in conftest.py pytest_collection_modifyitems
|
|
|
|
[tool.pyright]
|
|
venvPath = "."
|
|
venv = ".venv"
|