forked from nirtal85/Playwright-Python-Example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
48 lines (43 loc) · 1.08 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
[tool.poetry]
name = "playwright-python"
version = "0.1.0"
description = ""
authors = ["nirtal85 <[email protected]>"]
readme = "README.md"
packages = [{include = "playwright_python"}]
[tool.isort]
skip = ["env", "venv"]
profile = "black"
[tool.poetry.group.dev.dependencies]
black = "^24.1.1"
isort = "5.13.2"
pre-commit = "^3.6.0"
[tool.pytest.ini_options]
log_cli = true
log_cli_level = "INFO"
log_cli_format = "%(asctime)s [%(levelname)8s] %(message)s (%(filename)s:%(lineno)s)"
log_cli_date_format = "%Y-%m-%d %H:%M:%S"
base_url = 'https://www.saucedemo.com/'
addopts = [
"--alluredir=allure-results",
"-ra",
"--color=yes",
"--browser-channel=chrome",
"--headed",
"--video=retain-on-failure",
"--tracing=retain-on-failure"
]
[tool.poetry.dependencies]
python = "^3.11"
allure-pytest = "2.13.2"
allure-python-commons = "2.13.2"
pytest = "7.4.4"
requests = "2.31.0"
playwright = "1.41.1"
pytest-playwright = "0.4.3"
pytest-base-url = "^2.1.0"
nursery = "^0.0.1a1"
trio = "^0.24.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"