forked from aaltat/robotframework-schemathesis
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
95 lines (89 loc) · 1.36 KB
/
pyproject.toml
File metadata and controls
95 lines (89 loc) · 1.36 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
[project]
name = "robotframework-schemathesis"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.10.1"
dependencies = [
"robotframework>=7.2.2",
"robotframework-datadriver>=1.11.2",
"robotframework-pythonlibcore>=4.4.1",
"schemathesis>=3.39.16",
]
[dependency-groups]
dev = [
"fastapi[standard]>=0.115.12",
"invoke>=2.2.0",
"mypy>=1.15.0",
"pytest>=8.3.5",
"requests>=2.32.3",
"robotframework-tidy>=4.16.0",
"ruff>=0.11.8",
]
[tool.robotidy]
overwrite = true
diff = false
src = [
"atest"
]
configure = [
"OrderTags:enabled=True",
"RenameKeywords:enabled=True",
"RenameTestCases:enabled=True",
"RenameVariables:enabled=True",
"ReplaceWithVAR:enabled=True",
]
[tool.ruff]
line-length = 110
target-version = "py310"
[tool.ruff.lint]
select = [
"FAST",
"ANN",
"ASYNC",
"S",
"BLE",
"FBT",
"B",
"A",
"C4",
"T10",
"EXE",
"FIX",
"ISC",
"ICN",
"LOG",
"PIE",
"PYI",
"PT",
"Q",
"RSE",
"RET",
"SIM",
"SLOT",
"TID",
"TC",
"ARG",
"PTH",
"FLY",
"I",
"C90",
"NPY",
"PD",
"N",
"PERF",
"E",
"W",
"F",
"PL",
"UP",
"FURB",
"RUF",
"TRY"
]
ignore = [
"ANN401",
"N999"
]
[tool.ruff.format]
quote-style = "double"