-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpytest.ini
More file actions
38 lines (31 loc) · 778 Bytes
/
pytest.ini
File metadata and controls
38 lines (31 loc) · 778 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
[pytest]
# Pytest configuration for YaGGUF
# Only look for tests in the tests/ directory
testpaths = tests
# Test file patterns
python_files = test_*.py
# Test class patterns
python_classes = Test*
# Test function patterns
python_functions = test_*
# Markers
markers =
slow: marks tests as slow (deselect with '-m "not slow"')
integration: marks tests as integration tests requiring real model downloads and significant disk space/time
requires_binaries: marks tests that require llama.cpp binaries
# Ignore paths (avoid picking up llama.cpp tests)
norecursedirs =
llama.cpp
.git
__pycache__
*.egg-info
build
dist
venv
.venv
# Output options
console_output_style = progress
addopts =
--strict-markers
--tb=short
-v