2025-07-14 14:57:44 +01:00
|
|
|
[pytest]
|
|
|
|
|
testpaths = tests
|
|
|
|
|
python_paths = .
|
|
|
|
|
python_files = test_*.py
|
|
|
|
|
python_classes = Test*
|
|
|
|
|
python_functions = test_*
|
|
|
|
|
addopts =
|
|
|
|
|
-v
|
|
|
|
|
--tb=short
|
|
|
|
|
--strict-markers
|
|
|
|
|
--disable-warnings
|
|
|
|
|
--cov=trustgraph
|
|
|
|
|
--cov-report=html
|
|
|
|
|
--cov-report=term-missing
|
|
|
|
|
# --cov-fail-under=80
|
|
|
|
|
asyncio_mode = auto
|
|
|
|
|
markers =
|
|
|
|
|
slow: marks tests as slow (deselect with '-m "not slow"')
|
|
|
|
|
integration: marks tests as integration tests
|
|
|
|
|
unit: marks tests as unit tests
|
2025-07-14 17:54:04 +01:00
|
|
|
contract: marks tests as contract tests (service interface validation)
|
2025-07-14 14:57:44 +01:00
|
|
|
vertexai: marks tests as vertex ai specific tests
|