-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpytest.ini
More file actions
27 lines (24 loc) · 828 Bytes
/
pytest.ini
File metadata and controls
27 lines (24 loc) · 828 Bytes
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
[pytest]
markers =
integration: marks tests that require API connectivity (deselect with '-m "not integration"')
slow: marks tests that are slow to run
# Other pytest configurations
testpaths = tests
python_files = test_*.py
python_classes = Test*
python_functions = test_*
# Shows logs during test runs
log_cli = True
log_cli_level = INFO
# Filter out specific warnings
filterwarnings =
# Ignore Pydantic deprecation warnings
ignore::DeprecationWarning:pydantic.*:
# Ignore Pydantic serializer warnings during tests
ignore::UserWarning:pydantic.main
# Ignore LiteLLM deprecation warnings
ignore::DeprecationWarning:litellm.*:
# Ignore HTTPX deprecation warnings
ignore::DeprecationWarning:httpx.*:
# Ignore importlib warnings
ignore::DeprecationWarning:importlib_resources.*: