forked from nirtal85/Selenium-Python-Example
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
72 lines (68 loc) · 1.59 KB
/
pyproject.toml
File metadata and controls
72 lines (68 loc) · 1.59 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
[dependency-groups]
dev = [
"ruff==0.11.12",
"pre-commit==4.2.0"
]
[project]
name = "selenium-python-example"
description = "Selenium Python example project with pytest and Allure report"
version = "0.1.0"
dependencies = [
"allure-pytest==2.14.2",
"assertpy==1.1",
"dataclasses-json==0.6.7",
"deprecated==1.2.18",
"mailinator-python-client-2==0.0.8",
"mysql-connector-python==9.3.0",
"pytest==8.4.0",
"pytest-base-url==2.1.0",
"pytest-check==2.5.3",
"pytest-dependency==0.6.0",
"pytest-ordering==0.6",
"pytest-rerunfailures==15.1",
"pytest-split==0.10.0",
"python-dotenv==1.1.0",
"requests==2.32.4",
"requests-toolbelt==1.0.0",
"selenium==4.33.0",
"tenacity==9.1.2",
"visual-regression-tracker==4.9.0",
"xlrd==2.0.1"
]
requires-python = "~=3.11"
[tool.pytest.ini_options]
pythonpath = ["src"]
addopts = [
"--clean-alluredir",
"--alluredir=allure-results",
"--allure-link-pattern",
"issue:https://{}",
"--allure-link-pattern",
"link:https://{}",
"--allure-link-pattern",
"tms:https://{}",
"--color=yes",
"-s",
"-p no:logging"
]
base_url = 'https://www.involve.me/'
markers = [
"security: marks security tests",
"devRun: marks tests that run before merge to the main branch"
]
testpaths = [
"tests"
]
[tool.ruff]
exclude = [".venv", "env"]
ignore = [
"D203", # One blank line required before class docstring (conflicts with D211)
"D213", # Multi-line docstring summary should start at the second line
"COM812"
]
line-length = 100
select = ["ALL"]
target-version = "py311"
[tool.ruff.format]
docstring-code-format = true
quote-style = "double"