We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/darrentmorgan/hostaway-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
test_fix_executor.py•896 B
"""Tests for fix-executor.sh"""
from pathlib import Path
import pytest
@pytest.fixture
def fix_executor():
"""Path to fix-executor.sh script."""
return Path(__file__).parent.parent.parent / ".automation" / "scripts" / "fix-executor.sh"
def test_fix_executor_exists(fix_executor):
"""Test that fix-executor.sh script exists."""
assert fix_executor.exists(), "fix-executor.sh not found"
assert fix_executor.is_file(), "fix-executor.sh is not a file"
@pytest.mark.skip(reason="Requires fix-executor.sh implementation")
def test_execute_fix(fix_executor):
"""Test executing a fix."""
# TODO: Implement after fix-executor.sh is created
@pytest.mark.skip(reason="Requires fix-executor.sh implementation")
def test_execute_fix_with_dependencies(fix_executor):
"""Test executing a fix with dependencies."""
# TODO: Implement after fix-executor.sh is created