We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ancoleman/qdrant-rag-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
pytest.ini•942 B
[pytest]
# Test discovery patterns
python_files = test_*.py
python_classes = Test*
python_functions = test_*
# Test directories
testpaths = tests
# Output options
addopts =
-v
--tb=short
--strict-markers
--disable-warnings
# Markers for categorizing tests
markers =
unit: Unit tests for individual components
integration: Integration tests that test multiple components
performance: Performance and memory tests
slow: Tests that take a long time to run
requires_qdrant: Tests that require Qdrant to be running
requires_models: Tests that require downloading embedding models
# Coverage options (when running with --cov)
[coverage:run]
source = src
omit =
*/tests/*
*/__pycache__/*
*/venv/*
*/.venv/*
[coverage:report]
exclude_lines =
pragma: no cover
def __repr__
raise AssertionError
raise NotImplementedError
if __name__ == .__main__.:
if TYPE_CHECKING: