summaryrefslogtreecommitdiffstats
path: root/pyproject.toml
blob: 0c99c1ad924f9bb0affb7b626b7f38cd8706e84f (plain) (blame)
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
[tool.uv.workspace]
members = [
    "packages/meshbay-common",
    "packages/meshbay-hub",
    "packages/meshbay-node",
]

[tool.ruff]
line-length = 100
target-version = "py312"

[tool.ruff.lint]
select = ["E", "F", "I", "UP"]

[tool.pytest.ini_options]
testpaths = [
    "packages/meshbay-common/tests",
    "packages/meshbay-hub/tests",
    "packages/meshbay-node/tests",
]
asyncio_mode = "auto"
# A hung test must not wedge the run — an aiortc handshake on the wrong Windows
# event loop can block forever with no internal timeout. thread method is used
# automatically on Windows (no SIGALRM).
timeout = 60