()
| 542 | if os.getenv("GITHUB_TOKEN"): |
| 543 | print("🔍 Running GitHub MCP server integration test...") |
| 544 | async def run_github_test(): |
| 545 | test_instance = TestGitHubMCPServer() |
| 546 | try: |
| 547 | await test_instance.test_github_mcp_server_connection() |
| 548 | print("✅ GitHub MCP server integration test passed") |
| 549 | except Exception as e: |
| 550 | print(f"❌ GitHub MCP server integration test failed: {e}") |
| 551 | |
| 552 | asyncio.run(run_github_test()) |
no test coverage detected