Merge pull request #3745 from RichardTang-Aden/integration-ci

(micro-fix)(chore): fix lint
This commit is contained in:
RichardTang-Aden
2026-02-05 18:15:38 -08:00
committed by GitHub
5 changed files with 2 additions and 7 deletions
+1 -1
View File
@@ -57,13 +57,13 @@ from .health_check import HealthCheckResult, check_credential_health
from .hubspot import HUBSPOT_CREDENTIALS
from .llm import LLM_CREDENTIALS
from .search import SEARCH_CREDENTIALS
from .slack import SLACK_CREDENTIALS
from .shell_config import (
add_env_var_to_shell_config,
detect_shell,
get_shell_config_path,
get_shell_source_command,
)
from .slack import SLACK_CREDENTIALS
from .store_adapter import CredentialStoreAdapter
# Merged registry of all credentials
+1 -2
View File
@@ -11,10 +11,9 @@ import inspect
from pathlib import Path
from typing import Any
import pytest
from fastmcp import FastMCP
from aden_tools.credentials import CREDENTIAL_SPECS, CredentialStoreAdapter
from aden_tools.credentials import CREDENTIAL_SPECS
# --- Known Issues ---
# google_search and google_cse specs use tools=["google_search"] but
@@ -9,7 +9,6 @@ from __future__ import annotations
import importlib
import inspect
from unittest.mock import patch
import pytest
from fastmcp import FastMCP
@@ -19,7 +18,6 @@ from aden_tools.credentials import CREDENTIAL_SPECS
from .conftest import (
CREDENTIAL_TOOL_MODULES,
MODULE_TO_TOOLS,
get_all_credential_tool_names,
get_minimal_args,
)
@@ -24,7 +24,6 @@ from .conftest import (
TOOL_MODULES,
)
# ---------------------------------------------------------------------------
# 1b-1: register_tools(mcp) doesn't raise
# ---------------------------------------------------------------------------
@@ -37,7 +37,6 @@ from .conftest import (
TOOL_MODULES,
)
# ---------------------------------------------------------------------------
# 1a-1: Module has __init__.py re-exporting register_tools
# ---------------------------------------------------------------------------