- 基于 Loguru 重新封装,支持异步写入和多线程安全。 - 实现 @trace_step 装饰器,自动记录步骤名、参数及执行耗时。 - 引入 source 标签区分框架系统(System)与业务任务(task)日志。 - 新增 logger 模块测试用例 test_logger.py
15 lines
297 B
TOML
15 lines
297 B
TOML
[project]
|
|
name = "appautotest"
|
|
version = "0.1.0"
|
|
description = "Add your description here"
|
|
readme = "README.md"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"appium-python-client>=5.2.4",
|
|
"loguru>=0.7.3",
|
|
]
|
|
|
|
[[tool.uv.index]]
|
|
url = "https://pypi.tuna.tsinghua.edu.cn/simple"
|
|
default = true
|