-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (60 loc) · 1.18 KB
/
pyproject.toml
File metadata and controls
70 lines (60 loc) · 1.18 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[project]
name = "stompman-workspace"
requires-python = ">=3.11"
version = "0"
[dependency-groups]
dev = [
"anyio==4.13.0",
"faker==40.12.0",
"hypothesis==6.151.10",
"mypy==1.20.0",
"polyfactory==3.3.0",
"pytest==9.0.2",
"pytest-cov==7.1.0",
"pytest-timeout==2.4.0",
"pytest-rerunfailures==16.1",
"ruff==0.15.8",
"uvloop==0.22.1",
]
ws = [
"websockets==16.0",
]
[tool.uv]
package = false
[tool.uv.workspace]
members = ["packages/*"]
[tool.uv.sources]
stompman = { workspace = true }
[tool.mypy]
python_version = "3.11"
warn_unused_ignores = true
strict = true
[tool.ruff]
fix = true
unsafe-fixes = true
line-length = 120
[tool.ruff.lint]
preview = true
select = ["ALL"]
ignore = [
"ASYNC109",
"COM812",
"CPY001",
"D1",
"D203",
"D213",
"DOC201",
"DOC501",
"ISC001",
"PLC2701",
"PLC2801",
"PLR0913",
"SLF001"
]
extend-per-file-ignores = { "*/test_*/*" = ["S101", "SLF001", "ARG", "PLR6301"] }
[tool.pytest.ini_options]
addopts = "--cov -s -vv --reruns 6 --only-rerun FailedAllConnectAttemptsError"
[tool.coverage.report]
skip_covered = true
show_missing = true
exclude_also = ["if TYPE_CHECKING:"]