- 新增 pytest_addoption 增加 "--caps_name" 获取配置文件中的设备/平台名称 - 修复 get_caps 的 Capabilities 加载逻辑 - 优化 其他优化 enums.py - 删除 移除部分文档,代码,第三方包(loguru)
20 lines
431 B
TOML
20 lines
431 B
TOML
[project]
|
|
name = "appautotest"
|
|
version = "0.1.0"
|
|
description = "App自动化测试框架"
|
|
readme = "README.md"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"allure-pytest==2.13.5",
|
|
"appium-python-client>=5.2.4",
|
|
"pytest>=8.3.5",
|
|
"PyYAML>=6.0.1",
|
|
"openpyxl>=3.1.2",
|
|
"pytest-rerunfailures>=16.1",
|
|
"python-dotenv>=1.2.1",
|
|
]
|
|
|
|
[[tool.uv.index]]
|
|
url = "https://pypi.tuna.tsinghua.edu.cn/simple"
|
|
default = true
|