forked from mozilla-ai/llamafile
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (31 loc) · 1.03 KB
/
Copy pathpyproject.toml
File metadata and controls
32 lines (31 loc) · 1.03 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
[project]
name = "llamafile-integration-tests"
version = "0.1.0"
requires-python = ">=3.10"
dependencies = [
"pytest>=7.0.0",
"requests>=2.28.0",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_functions = ["test_*"]
log_cli = true
log_cli_level = "WARNING"
log_cli_format = "%(asctime)s [%(levelname)s] %(message)s"
log_cli_date_format = "%H:%M:%S"
markers = [
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
"multimodal: requires a vision-capable model",
"tool_calling: requires a tool-capable model",
"thinking: requires a thinking model (QwQ, DeepSeek-R1, etc.)",
"gpu: tests GPU acceleration",
"cpu: tests CPU-only execution",
"server: tests server mode",
"tui: tests TUI mode",
"cli: tests CLI mode",
"combined: tests combined (TUI+server) mode",
"help: tests --help output (no model required)",
"ssl: tests HTTPS/TLS support (serving and model download)",
"online: tests that need network access (deselect with '-m \"not online\"')",
]