-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
69 lines (58 loc) · 1.55 KB
/
pyproject.toml
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
[tool.poetry]
name = "robotframework_learn"
version = "1.2.2"
description = "Search in google: 'do a barrel roll'. Thank me later :7"
authors = ["Konyukhov Alexander <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.12"
robotframework = "^7.0"
robotframework-seleniumlibrary = "^6.3.0"
robotframework-stacktrace = "^0.4.1"
python-dotenv = "^1.0.1"
robotframework-datadriver = {extras = ["xls"], version = "^1.11.1"}
requests = "^2.31.0"
loguru = "^0.7.2"
pydantic = {extras = ["email"], version = "^2.7.1"}
[tool.poetry.group.formatting.dependencies]
isort = "^5.13.2"
robotframework-tidy = "^4.11.0"
[tool.poetry.group.type-checking.dependencies]
mypy = "^1.10.0"
pyright = "^1.1.360"
[tool.poetry.group.linting.dependencies]
pylint = "^3.1.0"
ruff = "^0.4.2"
robotframework-robocop = "^5.0.4"
types-requests = "^2.31.0.20240406"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.mypy]
plugins = ["pydantic.mypy"]
warn_redundant_casts = true
warn_unused_ignores = true
disallow_any_generics = true
check_untyped_defs = true
disallow_untyped_defs = true
strict = true
show_error_codes = true
[tool.ruff]
line-length = 120
[tool.pylint.'FORMAT CHECKER']
max-line-length=120
[tool.robotidy]
line_length = 120
spacecount = 4
[tool.robocop]
filetypes = [".robot", ".resource"]
configure = [
"line-too-long:line_length:120",
"too-many-calls-in-test-case:max_calls:15"
]
exclude = [
"missing-doc-suite",
"missing-doc-test-case",
"missing-doc-keyword",
"too-few-calls-in-test-case"
]