-
-
Notifications
You must be signed in to change notification settings - Fork 92
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (31 loc) · 735 Bytes
/
pyproject.toml
File metadata and controls
33 lines (31 loc) · 735 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
# Only for test Runs, does not relate to actual Patchright package
[project]
name = "patchright-tests"
version = "1.0.0"
requires-python = ">=3.11"
[tool.pytest.ini_options]
addopts = "-Wall -rsx" # -s
markers = [
"skip_browser",
"only_browser",
"skip_platform",
"only_platform"
]
junit_family = "xunit2"
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "session"
asyncio_default_test_loop_scope = "session"
[dependency-groups]
dev = [
"autobahn>=25.12.2",
"patchright>=1.56.0",
"pillow>=12.0.0",
"pixelmatch>=0.3.0",
"pyopenssl>=25.3.0",
"pytest>=9.0.2",
"pytest-asyncio>=1.3.0",
"pytest-timeout>=2.4.0",
"requests>=2.32.5",
"twisted>=25.5.0",
"toml>=0.10.0"
]