-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (27 loc) · 819 Bytes
/
pyproject.toml
File metadata and controls
31 lines (27 loc) · 819 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
[tool.poetry]
name = "python-reporter-testsuite"
description = "An example testsuite for all supported Applause Python SDK test runners"
readme = "README.md"
version = "1.0.0"
authors = ["Applause"]
homepage = "https://github.com/ApplauseOSS/pytest-applause-reporter"
license = "LICENSE"
package-mode = false
[tool.poetry.dependencies]
python = "^3.8.0"
[tool.poetry.group.dev.dependencies]
pytest-applause-reporter = {git = "https://github.com/ApplauseOSS/pytest-applause-reporter", rev = "master"}
pytest = "^8.3.2"
ruff = "^0.6.4"
tox = "^4.18.0"
selenium = "^4.24.0"
selene = "2.0.0rc9"
[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib",
]
pythonpath = "src"
markers = [
"applause_test_case_id: mark test as part of applause",
"test_rail_test_case_id: mark test as part of test rail"
]