Add some qdrant stuff

This commit is contained in:
Cyber MacGeddon 2025-07-11 20:40:41 +01:00
parent 2646f57446
commit 71de649ab5
4 changed files with 170 additions and 0 deletions

20
tests/pytest.ini Normal file
View file

@ -0,0 +1,20 @@
[tool:pytest]
testpaths = tests
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
vertexai: marks tests as vertex ai specific tests