diff --git a/docs/test-plan-e2e-v27.md b/docs/test-plan-e2e-v27.md index 4504287..d08f4b6 100644 --- a/docs/test-plan-e2e-v27.md +++ b/docs/test-plan-e2e-v27.md @@ -98,7 +98,7 @@ | `src/blackboard/db.py`(数据模型) | unit/test_models + integration | `pytest tests/unit/test_models.py tests/integration/` | | `src/blackboard/db.py`(状态机) | unit/test_state_machine + integration | `pytest -m state_machine` | | `src/daemon/spawner.py`(classify) | unit/test_classify_outcome | `pytest -m classify` | -| `src/daemon/spawner.py`(acquire/release) | unit/test_spawner + integration | `pytest tests/unit/test_spawner.py tests/integration/test_spawner_integration.py` | +| `src/daemon/spawner.py`(acquire/release) | unit/test_spawner + e2e/test_spawner_e2e | `pytest tests/unit/test_spawner.py tests/e2e/test_spawner_e2e.py` | | `src/daemon/ticker.py`(广播) | unit/test_broadcast_tracker + integration | `pytest -m broadcast` | | `src/daemon/ticker.py`(超时) | unit/test_timeout + integration | `pytest tests/integration/test_ticker_integration.py -k timeout` | | `src/daemon/router.py` | unit/test_router | `pytest tests/unit/test_router.py` | @@ -382,7 +382,6 @@ tests/ │ ├── test_main.py # 健康端点 + 配置 │ ├── test_dispatcher_integration.py # Dispatcher 回滚 │ ├── test_review_integration.py # Review pipeline + scoring -│ ├── test_spawner_integration.py # Spawner 超时/失败(RUN_INTEGRATION gate) │ ├── test_ticker_integration.py # Ticker 主循环 + 广播 + 超时 + 依赖推进 │ ├── test_sse.py # SSE broker + hook manager │ └── test_v27_subtasks.py # 子任务集成