forked from youngyangyang04/Test-Automation-Framework
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (50 loc) · 1.06 KB
/
pyproject.toml
File metadata and controls
53 lines (50 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
[build-system]
requires = ["setuptools>=69", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "test-automation-framework"
version = "0.2.0"
description = "企业级接口自动化测试框架,支持多渠道通知、趋势分析、AI 根因分析与用例生成"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"allure-pytest>=2.13.5",
"clickhouse-sqlalchemy>=0.3.2",
"jsonpath>=0.82.2",
"pandas>=2.2.3",
"paramiko",
"pymongo",
"pymysql",
"pytest>=8.3.2",
"pyyaml>=6.0.2",
"redis>=5.2.1",
"requests>=2.32.3",
"sqlalchemy>=2.0.36",
"xlrd>=2.0.1",
"xlutils>=2.0.0",
# 并发执行
"pytest-xdist>=3.6.1",
# extract.yaml 跨进程文件锁
"filelock>=3.16.0",
]
[project.optional-dependencies]
dev = [
"pytest-xdist>=3.6.1",
"filelock>=3.16.0",
"locust>=2.32.0",
]
[tool.setuptools.packages.find]
where = ["."]
include = [
"base*",
"common*",
"conf*",
"data*",
"testcase*",
]
exclude = [
"api_server*",
"report*",
"logs*",
"tools*",
]