03e152baab
目录结构: tests/web/admin/ 管理端 (Playwright) tests/web/mini_program/ 司机端小程序 (Playwright/微信 WebView) tests/app/driver_android/ 司机安卓 (Appium) tests/app/shipper_android/ 货主安卓 (Appium) tests/app/driver_ios/ 司机苹果 (Appium) tests/app/shipper_ios/ 货主苹果 (Appium) 公共模块: tests/app/_shared.py driver+ensure_logged_in 工厂 tests/app/_base_page.py App Page Object 基类 配置: test_config.yaml 拆分为 6 个独立 section + 货主账号
40 lines
945 B
INI
40 lines
945 B
INI
[pytest]
|
|
# pytest 配置文件
|
|
|
|
# 测试发现路径
|
|
testpaths = tests
|
|
|
|
# 仅执行以 test_ 开头的文件
|
|
python_files = test_*.py
|
|
python_classes = Test*
|
|
python_functions = test_*
|
|
|
|
# 默认命令行参数
|
|
addopts =
|
|
-v
|
|
--tb=short
|
|
--strict-markers
|
|
--disable-warnings
|
|
-p no:cacheprovider
|
|
|
|
# 自定义 markers
|
|
markers =
|
|
p0: P0 核心流程(冒烟测试)
|
|
p1: P1 主要功能
|
|
p2: P2 次要/异常流程
|
|
smoke: 冒烟测试
|
|
admin: 管理端 (Playwright)
|
|
mini_program: 司机端小程序 (Playwright)
|
|
driver_android: 司机安卓端 (Appium)
|
|
shipper_android: 货主安卓端 (Appium)
|
|
driver_ios: 司机苹果端 (Appium)
|
|
shipper_ios: 货主苹果端 (Appium)
|
|
appium: 所有 Appium 测试
|
|
playwright: 所有 Playwright 测试
|
|
|
|
# 日志格式
|
|
log_cli = true
|
|
log_cli_level = INFO
|
|
log_cli_format = %(asctime)s [%(levelname)s] %(name)s — %(message)s
|
|
log_cli_date_format = %H:%M:%S
|