- 创建了基本的项目结构 - 添加了 .gitignore 文件 - 配置了基本的开发环境 - 添加清华镜像源 - 设置了基础的文件夹和文件(如 commons, utils, POM, pytest.ini) 项目说明: - [项目名称]:Web自动化测试 - [项目描述]:基于pytest,selenium的自动化测试工具 - [开发环境]:Python
22 lines
402 B
TOML
22 lines
402 B
TOML
[project]
|
|
name = "webautotest"
|
|
version = "0.1.0"
|
|
description = "Web自动化测试框架"
|
|
readme = "README.md"
|
|
requires-python = ">=3.10"
|
|
dependencies = [
|
|
]
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"pydantic-settings>=2.8.1",
|
|
"pytest>=8.3.5",
|
|
"pytest-xlsx>=0.5.1",
|
|
"selenium>=4.30.0",
|
|
"tomlkit>=0.13.2",
|
|
]
|
|
|
|
[[tool.uv.index]]
|
|
url = "https://mirrors.cloud.tencent.com/pypi/simple"
|
|
default = true
|