#!/usr/bin/env python3
"""
Test suite for MCP Remote macOS Use.
This module collects and runs all tests in the project.
"""
import os
import sys
import unittest
import pytest
# Add the source directory to the path
sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), '..')))
if __name__ == "__main__":
# Run pytest tests
print("=== Running pytest tests ===")
status = pytest.main(["-v"])
# Return the exit code
sys.exit(status)