-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (33 loc) · 852 Bytes
/
Copy pathpyproject.toml
File metadata and controls
37 lines (33 loc) · 852 Bytes
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
[tool.poetry]
name = "py-bootstrap"
version = "0.1.0"
description = "Project Bootstrap for Automated Test"
authors = ["fachrul ch"]
readme = "README.md"
package-mode = false
[tool.poetry.dependencies]
python = "^3.12"
pytest = "^8.3.3"
pytest-html = "^4.1.1"
berapi = "^0.1.4"
dotenv = "^0.9.9"
faker = "^37.0.0"
pytest-playwright = "^0.7.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
addopts = [
"--color=yes",
"--browser-channel=chrome",
"--headed",
"--html=report.html",
"--self-contained-html",
# "--tracing=retain-on-failure",
"--video=retain-on-failure"
]
base_url = 'https://www.saucedemo.com/'
log_cli = true
log_cli_date_format = "%Y-%m-%d %H:%M:%S"
log_cli_format = "%(asctime)s [%(levelname)8s] %(message)s (%(filename)s:%(lineno)s)"
log_cli_level = "INFO"