We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5fc935c commit 9219921Copy full SHA for 9219921
1 file changed
pytest.ini
@@ -0,0 +1,21 @@
1
+[pytest]
2
+markers =
3
+ asyncio
4
+asyncio_mode = auto
5
+asyncio_default_fixture_loop_scope = function
6
+testpaths = tests ./eval_protocol/quickstart
7
+python_files = test_*.py llm_judge_*.py
8
+python_classes = Test*
9
+python_functions = test_*
10
+# Configure stdout/stderr capture for debugging
11
+addopts = -s --tb=short -q
12
+# Alternative: disable capture completely for debugging
13
+# addopts = -s --tb=short --capture=no
14
+filterwarnings =
15
+ ignore::UserWarning:pydantic.*
16
+ ignore::DeprecationWarning:pydantic.*
17
+ ignore:.*PydanticSerializationUnexpectedValue.*:UserWarning
18
+ ignore:.*Support for class-based.*config.*:DeprecationWarning
19
+ ignore:.*serializer warnings.*:UserWarning
20
+ ignore:.*Pydantic.*:UserWarning
21
+ ignore:.*Pydantic.*:DeprecationWarning
0 commit comments