-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (38 loc) · 1021 Bytes
/
Copy pathpyproject.toml
File metadata and controls
42 lines (38 loc) · 1021 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
[project]
name = "prism-workspace"
version = "0.1.0"
requires-python = ">=3.12"
dependencies = ["prism-calibration"]
[dependency-groups]
dev = [
"pytest",
"pytest-asyncio",
"ruff",
"mypy",
]
[tool.uv.sources]
prism-calibration = { workspace = true }
prism-schemas = { path = "packages/schemas-python", editable = true }
prism-trader = { path = "apps/trader", editable = true }
prism-sentinel = { path = "apps/sentinel", editable = true }
prism-mcp = { path = "apps/mcp", editable = true }
[tool.uv.workspace]
members = [
"packages/schemas-python",
"packages/calibration-python",
"apps/trader",
"apps/sentinel",
"apps/mcp",
]
[tool.pytest.ini_options]
testpaths = [
"apps/trader/src/tests",
"apps/sentinel/src/tests",
"apps/mcp/src/tests",
"packages/schemas-python/src/tests",
"tests",
]
markers = [
"integration: marks tests that require external services (DB, IPFS, Circle SDK)",
"slow: marks tests that are slow (LLM calls, on-chain transactions)",
]