-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathpyproject.toml
68 lines (63 loc) · 1.59 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
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core"]
[tool.isort]
profile = "black"
skip = ["env", "venv"]
[tool.poetry]
authors = ["Nir Tal <[email protected]>"]
description = "Selenium Python example project with pytest and Allure report"
homepage = "https://github.com/nirtal85/Selenium-Python-Example"
name = "selenium-python-example"
packages = [{include = "selenium_python_example"}]
readme = "README.md"
repository = "https://github.com/nirtal85/Selenium-Python-Example"
version = "0.1.0"
[tool.poetry.dependencies]
allure-pytest = "2.13.5"
assertpy = "1.1"
dataclasses-json = "0.6.7"
deprecated = "1.2.15"
mailinator-python-client-2 = "0.0.6"
mysql-connector-python = "9.1.0"
pytest = "8.3.4"
pytest-base-url = "2.1.0"
pytest-check = "2.4.1"
pytest-dependency = "0.6.0"
pytest-ordering = "0.6"
pytest-rerunfailures = "15.0"
pytest-split = "0.10.0"
python = "^3.11"
python-dotenv = "1.0.1"
requests = "2.32.3"
requests-toolbelt = "1.0.0"
selenium = "4.27.1"
tenacity = "9.0.0"
visual-regression-tracker = "4.9.0"
xlrd = "2.0.1"
[tool.poetry.group.dev.dependencies]
black = "24.10.0"
isort = "5.13.2"
pre-commit = "4.0.1"
[tool.pytest.ini_options]
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"
]