Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion tests/plugins/google_sheets_reporter/pytest_google_sheets.py
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,8 @@ def detect_test_category(item) -> str:
'integration': 'End-To-End',
'database': MULTI_DB_SUPPORT,
'google_sheets': 'Google Sheets Integration',
'summary': 'Summary'
'summary': 'Summary',
'mcp': 'MCP',
}

for keyword, worksheet in path_worksheet_map.items():
Expand All @@ -265,6 +266,7 @@ class GoogleSheetsPlugin:
LLM_OLLAMA_CLIENT,
LLM_OPENAI_CLIENT,
LLM_CONTEXTUAL_CLIENT,
'MCP',
}

def __init__(self, config):
Expand Down Expand Up @@ -297,6 +299,7 @@ def __init__(self, config):
LLM_CONTEXTUAL_CLIENT,
COMPLETE_USER_ISOLATION,
'Summary',
'MCP',
]

for worksheet_name in worksheets:
Expand Down
Loading