Add testing

This commit is contained in:
2025-09-26 01:29:19 +00:00
parent 3ec2687226
commit de9826a4b6
13 changed files with 445 additions and 100 deletions

View File

@@ -1,5 +1,5 @@
[project]
name = "qdrant-mcp"
name = "vector-search-mcp"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
@@ -11,7 +11,7 @@ dependencies = [
]
[project.scripts]
qdrant-mcp = "qdrant_mcp:run"
vector-search-mcp = "vector_search_mcp:run"
[build-system]
requires = ["uv_build"]
@@ -23,4 +23,16 @@ secret = "qdrant-mcp"
[dependency-groups]
dev = [
"fastembed>=0.7.3",
"pytest>=8.4.2",
"pytest-asyncio>=1.2.0",
"pytest-sugar>=1.1.1",
]
[tool.basedpyright]
reportAny = false
reportExplicitAny = false
enableTypeIgnoreComments = true
[tool.pytest.ini_options]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"