All checks were successful
构建并部署到测试环境(无 SSH) / build-and-deploy (push) Successful in 6m39s
- 新增店铺角色管理 API 和数据模型 - 实现角色继承和权限检查逻辑 - 添加流程测试框架和集成测试 - 更新权限服务和账号管理逻辑 - 添加数据库迁移脚本 - 归档 OpenSpec 变更文档 Ultraworked with Sisyphus
35 lines
581 B
YAML
35 lines
581 B
YAML
# 远程测试环境配置
|
|
# 使用方式: TEST_ENV=remote pytest
|
|
|
|
api:
|
|
base_url: "https://test-api.example.com"
|
|
timeout: 30
|
|
|
|
database:
|
|
host: "test-db.example.com"
|
|
port: 5432
|
|
name: "junhong_test"
|
|
user: "test_user"
|
|
password: "test_password"
|
|
|
|
redis:
|
|
host: "test-redis.example.com"
|
|
port: 6379
|
|
db: 0
|
|
|
|
# 预置测试账号
|
|
accounts:
|
|
super_admin:
|
|
username: "superadmin"
|
|
password: "Admin123456"
|
|
platform_admin:
|
|
username: "platform"
|
|
password: "Admin123456"
|
|
|
|
# Mock 配置
|
|
mock:
|
|
enabled: true
|
|
payment:
|
|
auto_success: true
|
|
delay_seconds: 1
|