-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpytest.ini
More file actions
22 lines (22 loc) · 827 Bytes
/
pytest.ini
File metadata and controls
22 lines (22 loc) · 827 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[pytest]
markers =
asyncio
benchmark: marks tests as benchmark tests (for CLI startup time checks)
asyncio_mode = auto
asyncio_default_fixture_loop_scope = function
testpaths = tests ./eval_protocol/quickstart
python_files = test_*.py llm_judge_*.py
python_classes = Test*
python_functions = test_*
# Configure stdout/stderr capture for debugging
addopts = -s --tb=short -q
# Alternative: disable capture completely for debugging
# addopts = -s --tb=short --capture=no
filterwarnings =
ignore::UserWarning:pydantic.*
ignore::DeprecationWarning:pydantic.*
ignore:.*PydanticSerializationUnexpectedValue.*:UserWarning
ignore:.*Support for class-based.*config.*:DeprecationWarning
ignore:.*serializer warnings.*:UserWarning
ignore:.*Pydantic.*:UserWarning
ignore:.*Pydantic.*:DeprecationWarning