-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpytest.ini
More file actions
49 lines (41 loc) · 1.17 KB
/
pytest.ini
File metadata and controls
49 lines (41 loc) · 1.17 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
[pytest]
# Pytest configuration for EvalView
# Test discovery patterns
python_files = test_*.py
python_classes = Test*
python_functions = test_*
# Test paths
testpaths = tests
# Output options
addopts =
# Show extra test summary info
-ra
# Show local variables in tracebacks
-l
# Verbose output
-v
# Show coverage if pytest-cov is installed
--strict-markers
# Fail on warnings (uncomment if desired)
# -W error
# Async test configuration
asyncio_mode = auto
# Markers for categorizing tests
markers =
unit: Unit tests for individual components
integration: Integration tests for multiple components
slow: Tests that take a long time to run
network: Tests that require network access
asyncio: Async tests using pytest-asyncio
requires_api_key: Tests that need a real LLM provider API key (auto-skipped when no key is set)
# Minimum Python version
minversion = 7.0
# Log configuration
log_cli = false
log_cli_level = INFO
log_cli_format = %(asctime)s [%(levelname)8s] %(message)s
log_cli_date_format = %Y-%m-%d %H:%M:%S
# Coverage options (if pytest-cov is installed)
# [coverage:run]
# source = evalview
# omit = */tests/*