-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (38 loc) · 905 Bytes
/
Copy pathpyproject.toml
File metadata and controls
44 lines (38 loc) · 905 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
34
35
36
37
38
39
40
41
42
43
44
[tool.pytest.ini_options]
addopts = "-ra --strict-config --strict-markers"
pythonpath = ["."]
testpaths = ["tests"]
markers = [
"integration: requires an external service such as MongoDB",
]
[tool.coverage.run]
branch = true
[tool.coverage.report]
show_missing = true
skip_covered = true
[tool.ruff]
line-length = 120
target-version = "py312"
[tool.ruff.lint]
select = ["B", "E4", "E7", "E9", "F", "I"]
[tool.ruff.format]
docstring-code-format = true
indent-style = "space"
line-ending = "lf"
quote-style = "double"
[tool.mypy]
files = [
"core/circuit_breaker.py",
"flex/domain",
"flex/blockchain/contract_state.py",
"flex/application/asset_transfers.py",
"flex/db/lp_projection.py",
"flex/db/sync_coordinator.py",
"flex/providers/pact.py",
]
follow_imports = "skip"
python_version = "3.12"
strict = true
pretty = true
show_error_codes = true
warn_unreachable = true