-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (39 loc) · 1.16 KB
/
pyproject.toml
File metadata and controls
44 lines (39 loc) · 1.16 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
[tool.poetry]
name = "appium-framework"
version = "0.1.0"
description = "A mobile automation framework using pytest and appium"
authors = ["Dmytro Berezovskyi <[email protected]>"]
packages = [
{ include = "src" },
{ include = "drivers", from = "src" },
{ include = "screens", from = "src" },
{ include = "utils", from = "src" }
]
[tool.poetry.dependencies]
python = "^3.12"
pytest = "^8.3.4"
dynaconf = "^3.2.10"
requests = "^2.31"
pytest-html = "^4.1.1"
Appium-Python-Client = "^4.5.1"
[tool.poetry.dev-dependencies]
ruff = "^0.6.8"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
addopts = "-rA -v --env=stage --platform=android --device=emulator --listeners=events --capture=no -p no:cacheprovider --html=../reports/test_report.html --self-contained-html"
asyncio_default_fixture_loop_scope = "function"
markers = [
{ name = "smoke", description = "run smoke tests" },
{ name = "regression", description = "run regression tests" }
]
testpaths = ["tests"]
python_files = ["*.py"]
python_classes = [
"Test*",
"*Test*",
"*Test",
"*Tests",
]
python_functions = ["test_*"]