forked from promptdriven/pdd
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpytest.ini
More file actions
16 lines (16 loc) · 872 Bytes
/
pytest.ini
File metadata and controls
16 lines (16 loc) · 872 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
[pytest]
asyncio_default_fixture_loop_scope = function
filterwarnings =
ignore:.*Pydantic V1 style.*deprecated.*
ignore:.*Accessing the 'model_fields' attribute on the instance is deprecated.*
ignore:datetime\.datetime\.utcnow\(\) is deprecated:DeprecationWarning:botocore\.auth.*
ignore::UserWarning:pydantic.main
ignore:Use 'content=<\.\.\.>' to upload raw bytes/text content:DeprecationWarning:httpx._models
ignore:Unknown config option.*:pytest.PytestConfigWarning
ignore:Support for class-based.*config.*is deprecated:DeprecationWarning
testpaths = tests
markers =
real: mark a test as requiring real resources (e.g. API calls)
integration: mark a test as an integration test (makes real API calls, costs money)
slow: mark a test as slow-running
e2e: mark a test as E2E test (uses real LLM calls, costs money, runs slowly)