forked from alchemiststudiosDOTai/tunacode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpytest.ini
More file actions
36 lines (28 loc) · 911 Bytes
/
pytest.ini
File metadata and controls
36 lines (28 loc) · 911 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
28
29
30
31
32
33
34
35
36
[pytest]
# Add src to path so tests can import tunacode without installing
pythonpath = src
# Test discovery patterns
python_files = test_*.py
python_classes = Test*
python_functions = test_*
# Test directories
# testpaths = tests
# Asyncio configuration
asyncio_mode = auto
asyncio_default_fixture_loop_scope = function
# Output options
addopts =
-v
--strict-markers
--tb=short
# Suppress OpenTelemetry deprecation warnings (transitive dep from pydantic-ai)
filterwarnings =
ignore::DeprecationWarning:opentelemetry
ignore:You should use `Logger`:DeprecationWarning
ignore:You should use `LoggerProvider`:DeprecationWarning
ignore:You should use `ProxyLoggerProvider`:DeprecationWarning
# Custom markers
markers =
asyncio: marks tests as async (handled by pytest-asyncio)
slow: marks tests as slow running
integration: marks tests that require external services