We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/crew-of-one/mcp-server--atlassian'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
"""Configuration for integration tests."""
import pytest
def pytest_configure(config):
"""Add integration marker."""
config.addinivalue_line(
"markers", "integration: mark test as requiring integration with real services"
)
def pytest_collection_modifyitems(config, items):
"""Skip integration tests unless explicitly requested."""
if not config.getoption("--integration", default=False):
# Skip integration tests by default
skip_integration = pytest.mark.skip(reason="Need --integration option to run")
for item in items:
if "integration" in item.keywords:
item.add_marker(skip_integration)
def pytest_addoption(parser):
"""Add integration option to pytest."""
parser.addoption(
"--integration",
action="store_true",
default=False,
help="run integration tests",
)