- 新增认证API测试,覆盖登录、权限验证、用户管理等关键流程 - 新增对话API测试,包含智能体调用、线程管理、工具获取及配置查询 - 新增系统API测试,涵盖系统健康检查、信息查询及配置管理权限控制 - 配置pytest支持异步测试、标记分类及详细输出 - 添加测试环境配置示例文件 .env.test.example - 新增测试用例README文档,说明测试架构及运行方法 - 优化Makefile,添加格式化差异检查任务 format_diff - 更新.gitignore,支持忽略测试环境配置文件 .env.test
51 lines
463 B
Plaintext
51 lines
463 B
Plaintext
### python gitignore
|
|
__pycache__/
|
|
*.pyc
|
|
.venv
|
|
.ruff_cache
|
|
|
|
### Vue gitignore
|
|
dist
|
|
node_modules
|
|
|
|
### common gitignore
|
|
.DS_Store
|
|
.env
|
|
.env.test
|
|
.env.local
|
|
.env.*.local
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
*.log
|
|
log
|
|
logs
|
|
*.log.*
|
|
*.db
|
|
*.lock
|
|
tmp
|
|
cache
|
|
|
|
### IDE
|
|
.vscode
|
|
.idea
|
|
.vibe
|
|
.qoder
|
|
*.nogit*
|
|
*.private*
|
|
*.local*
|
|
*.secret*
|
|
|
|
*.pdf
|
|
src/data
|
|
*/package-lock.json
|
|
web/package-lock.json
|
|
saves
|
|
saves_dev
|
|
notebooks
|
|
graphrag
|
|
docker/volumes
|
|
.cursorrules
|
|
|
|
/models
|