forked from microsoft/playwright-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
36 lines (31 loc) · 834 Bytes
/
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
[build-system]
requires = ["setuptools-scm==6.3.2", "wheel==0.37.0", "auditwheel==5.0.0"]
build-backend = "setuptools.build_meta"
[tool.pytest.ini_options]
addopts = "-Wall -rsx -vv -s"
markers = [
"skip_browser",
"only_browser",
"skip_platform",
"only_platform"
]
junit_family = "xunit2"
[tool.mypy]
ignore_missing_imports = true
python_version = "3.7"
warn_unused_ignores = false
warn_redundant_casts = true
warn_unused_configs = true
check_untyped_defs = true
disallow_untyped_defs = true
[[tool.mypy.overrides]]
module = "tests/async.*"
ignore_errors = true
[tool.isort]
profile = "black"
[tool.pyright]
include = ["playwright", "tests/sync"]
ignore = ["tests/async/", "scripts/"]
pythonVersion = "3.7"
reportMissingImports = false
reportTypedDictNotRequiredAccess = false