https://github.com/opensourceways/integration-tests
Mirror of agentic-develop-playground/integration-tests
https://github.com/opensourceways/integration-tests
Last synced: 12 days ago
JSON representation
Mirror of agentic-develop-playground/integration-tests
- Host: GitHub
- URL: https://github.com/opensourceways/integration-tests
- Owner: opensourceways
- Created: 2026-05-30T15:01:49.000Z (about 1 month ago)
- Default Branch: main
- Last Pushed: 2026-06-11T09:03:09.000Z (22 days ago)
- Last Synced: 2026-06-11T11:06:48.100Z (22 days ago)
- Language: Python
- Size: 486 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Integration Tests
集成测试仓库:跨仓端到端测试场景。
## 目录结构
```
integration-tests/
├── README.md # 本文件
├── CLAUDE.md # 项目 Claude 配置
├── .github/workflows/ci.yml # CI 配置
└── services/ # 各服务的测试用例
└── meeting-server/ # Meeting Server 测试
├── base_community/ # 所有社区共用的公共测试用例
└── openeuler_community/ # openEuler 社区专属测试用例
```
## 使用方法
```bash
# 执行 Meeting Server 公共测试用例
bash services/meeting-server/base_community/run_all.sh
# 执行 Meeting Server openEuler 社区专属测试(会先跑 base_community)
bash services/meeting-server/openeuler_community/run_all.sh
```
## 规则
1. 公共测试用例放在 `services//base_community/`,所有社区共享
2. 社区专属测试用例放在 `services//*_community/`,仅对应社区执行
3. 社区专属测试执行前先跑 base_community 公共测试