forked from Anantys-oss/koan
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (32 loc) · 750 Bytes
/
pyproject.toml
File metadata and controls
38 lines (32 loc) · 750 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
[project]
name = "koan"
version = "0.1.0"
description = "Autonomous background agent using idle Claude API quota"
requires-python = ">=3.11"
[tool.ruff]
target-version = "py311"
[tool.ruff.lint]
select = ["PERF", "SIM105", "F541"]
[tool.ruff.lint.per-file-ignores]
"koan/tests/*" = ["PERF"]
[tool.pytest.ini_options]
testpaths = ["koan/tests"]
pythonpath = ["koan"]
filterwarnings = [
"error::ResourceWarning",
]
markers = [
"slow: marks tests as slow (run in dedicated CI groups)",
]
timeout = 60
[tool.coverage.run]
source = ["app"]
omit = ["tests/*", "app/setup_wizard.py"]
[tool.coverage.report]
show_missing = true
precision = 1
exclude_lines = [
"pragma: no cover",
"if __name__ == .__main__.",
"if TYPE_CHECKING:",
]