forked from DeepCritical/DeepCritical
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpytest.ini
More file actions
29 lines (26 loc) · 1.01 KB
/
Copy pathpytest.ini
File metadata and controls
29 lines (26 loc) · 1.01 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
[pytest]
# Default pytest configuration
minversion = 6.0
addopts = -ra -q
testpaths = tests
python_files = test_*.py
python_classes = Test*
python_functions = test_*
# Markers for test categorization
markers =
vllm: marks tests as requiring VLLM container (disabled by default)
optional: marks tests as optional (disabled by default)
slow: marks tests as slow running
integration: marks tests as integration tests
containerized: marks tests as requiring containerized environment
performance: marks tests as performance tests
docker: marks tests as requiring Docker
llm: marks tests as requiring LLM framework
pydantic_ai: marks tests as Pydantic AI framework tests
requires_network: marks tests as requiring network access (deselect with '-m "not requires_network"')
# Filter out VLLM and optional tests by default
filterwarnings =
ignore::DeprecationWarning
ignore::PendingDeprecationWarning
# Test discovery and execution
norecursedirs = .git __pycache__ .pytest_cache node_modules