-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (29 loc) · 820 Bytes
/
pyproject.toml
File metadata and controls
32 lines (29 loc) · 820 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
[project]
name = "story-analytics"
version = "0.1.0"
description = "AI-native dashboard creation tool"
requires-python = ">=3.10"
[tool.pytest.ini_options]
testpaths = ["engine/tests", "api/tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
addopts = "-v --tb=short"
markers = [
"unit: Fast tests with no external dependencies",
"integration: Tests that use mocked LLM responses",
"e2e: End-to-end tests with live LLM calls (slow, expensive)",
"slow: Tests that take more than 5 seconds",
]
filterwarnings = [
"ignore::DeprecationWarning",
]
[tool.coverage.run]
source = ["engine", "api"]
omit = ["*/tests/*", "*/__pycache__/*"]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"if TYPE_CHECKING:",
"raise NotImplementedError",
]