forked from microsoft/playwright-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
44 lines (39 loc) · 1.03 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
[build-system]
requires = ["setuptools==68.2.2", "setuptools-scm==8.0.4", "wheel==0.41.2", "auditwheel==5.4.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
version_file = "playwright/_repo_version.py"
[tool.pytest.ini_options]
addopts = "-Wall -rsx -vv -s"
markers = [
"skip_browser",
"only_browser",
"skip_platform",
"only_platform"
]
junit_family = "xunit2"
asyncio_mode = "auto"
[tool.mypy]
ignore_missing_imports = true
python_version = "3.8"
warn_unused_ignores = false
warn_redundant_casts = true
warn_unused_configs = true
check_untyped_defs = true
disallow_untyped_defs = true
no_implicit_optional = false
exclude = [
"build/",
"env/",
]
[tool.isort]
profile = "black"
[tool.pyright]
include = ["playwright", "tests", "scripts"]
pythonVersion = "3.8"
reportMissingImports = false
reportTypedDictNotRequiredAccess = false
reportCallInDefaultInitializer = true
reportOptionalSubscript = false
reportUnboundVariable = false
strictParameterNoneValue = false