Files
llm-in-text/pytest.ini
T

18 lines
365 B
INI
Raw Normal View History

[pytest]
testpaths = backend/tests
python_files = test_*.py
python_classes = Test*
python_functions = test_*
addopts = -v --tb=short --cov=backend --cov-report=term-missing --cov-report=html
[coverage:run]
omit =
backend/tests/*
backend/test_*.py
[coverage:report]
exclude_lines =
pragma: no cover
if TYPE_CHECKING:
raise NotImplementedError