Some checks failed
Publish Python Package to Gitea / publish (push) Failing after 59s
25 lines
760 B
Python
25 lines
760 B
Python
# -*- coding: utf-8 -*-
|
|
"""匠厂桌面 E2E 与集成测试常用工具子包。
|
|
|
|
提供:
|
|
- ``SkillInfo`` / ``discover_skill_root`` / ``parse_skill_md``
|
|
- ``skill_healthcheck``
|
|
- ``HostAPIClient`` / ``HostAPIError``
|
|
|
|
**不提供任何会话清理能力**:测试完全模拟真实用户的 UI 操作,
|
|
真实用户从不会去后台删会话,测试也不该走底层 API / 文件系统去清。
|
|
"""
|
|
from .config import SkillInfo, discover_skill_root, parse_skill_md
|
|
from .healthcheck import HealthCheckError, skill_healthcheck
|
|
from .host_api import HostAPIClient, HostAPIError
|
|
|
|
__all__ = [
|
|
"SkillInfo",
|
|
"discover_skill_root",
|
|
"parse_skill_md",
|
|
"HealthCheckError",
|
|
"skill_healthcheck",
|
|
"HostAPIClient",
|
|
"HostAPIError",
|
|
]
|