Skip to main content
Glama
cbcoutinho

Nextcloud MCP Server

by cbcoutinho
conftest.py750 B
"""Pytest configuration for integration tests. This conftest.py provides hooks and fixtures specific to integration tests, including the --provider flag for RAG tests. """ # Valid provider names VALID_PROVIDERS = ["openai", "ollama", "anthropic", "bedrock"] def pytest_addoption(parser): """Add --provider command line option for RAG tests.""" parser.addoption( "--provider", action="store", default=None, choices=VALID_PROVIDERS, help="LLM provider for RAG tests: openai, ollama, anthropic, bedrock", ) def pytest_configure(config): """Configure custom markers.""" config.addinivalue_line( "markers", "rag: mark test as RAG integration test (requires --provider flag)" )

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/cbcoutinho/nextcloud-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server