File size: 1,084 Bytes
a963d65 |
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 37 |
[tool:pytest]
testpaths = tests
python_files = test_*.py
python_classes = Test*
python_functions = test_*
addopts =
-v
--strict-markers
--strict-config
--cov=src
--cov-report=html:htmlcov
--cov-report=term-missing
--cov-fail-under=98
--tb=short
--disable-warnings
--asyncio-mode=auto
env =
DISABLE_LANGFUSE = true
PYTEST_RUNNING = true
markers =
unit: Unit tests
integration: Integration tests
gpu: GPU-specific tests (requires RTX 4090)
slow: Slow-running tests
mcp: MCP server tests
codellama: CodeLlama model tests
benchmark: Performance benchmark tests
asyncio_mode = auto
filterwarnings =
ignore::DeprecationWarning
ignore::PendingDeprecationWarning
ignore::pytest.PytestUnknownMarkWarning
ignore::pydantic.v1.utils.PydanticDeprecatedSince211
ignore:.*pytest.mark.*:pytest.PytestUnknownMarkWarning
ignore:Unknown pytest.mark.*:pytest.PytestUnknownMarkWarning
ignore:Accessing the 'model_fields' attribute on the instance is deprecated*
ignore:.*model_fields.*deprecated.* |