-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
49 lines (42 loc) · 987 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
37
38
39
40
41
42
43
44
45
46
47
48
49
[build-system]
requires = [
"setuptools>=42",
"wheel"
]
build_backend = "setuptools.build_meta"
[tool.bandit]
skips = ["B101"]
[tool.pytest.ini_options]
addopts = "-ra -q --cov --no-success-flaky-report"
testpaths = ["tests"]
asyncio_mode = "auto"
[tool.coverage.run]
branch = true
source = ["turbo_sticks"]
omit = ["tests/*"]
concurrency = ["greenlet"]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"@overload",
"if TYPE_CHECKING:",
"if __name__ == .__main__.",
"raise NotImplementedError",
"if not self.live_channel_id:"
]
[tool.mypy]
python_version = "3.10"
namespace_packages = true
explicit_package_bases = true
follow_imports = "silent"
warn_unreachable = true
warn_unused_ignores = true
strict = true
no_implicit_reexport = false
plugins = ["pydantic.mypy"]
mypy_path = "$MYPY_CONFIG_FILE_DIR/src"
[tool.pydantic-mypy]
init_forbid_extra = true
init_typed = true
warn_required_dynamic_aliased = true
warn_untyped_fields = true