Skip to content
Open
Show file tree
Hide file tree
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
4 changes: 4 additions & 0 deletions tests/plugins/google_sheets_reporter/pytest_google_sheets.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
EVENT_DRIVEN_CTF = 'Event Driven CTF'
MULTI_DB_SUPPORT = 'Multi-DB-Support'
REDIS_MESSAGE_STREAMS = 'Redis Message Streams'
CHAT_ASSISTANT = 'AI_Assistant'


class GoogleSheetsReporter:
Expand Down Expand Up @@ -223,6 +224,7 @@ def detect_test_category(item) -> str:
path_worksheet_map = {
'complete_user_isolation': COMPLETE_USER_ISOLATION,
'redis_message_streams': REDIS_MESSAGE_STREAMS,
'test_chat_assistant': CHAT_ASSISTANT, # must come before generic 'agents'
'specialized': SPECIALIZED_BUSINESS_AGENT,
'agents': BASE_AGENT_FRAMEWORK,
'isolation': ISOLATION_TESTING_FRAMEWORK,
Expand Down Expand Up @@ -265,6 +267,7 @@ class GoogleSheetsPlugin:
LLM_OLLAMA_CLIENT,
LLM_OPENAI_CLIENT,
LLM_CONTEXTUAL_CLIENT,
CHAT_ASSISTANT,
}

def __init__(self, config):
Expand All @@ -285,6 +288,7 @@ def __init__(self, config):
SPECIALIZED_BUSINESS_AGENT,
EVENT_DRIVEN_CTF,
MULTI_DB_SUPPORT,
CHAT_ASSISTANT,
'Security Penetration Testing',
'CTF Challenge Validation',
'Performance Testing',
Expand Down
Empty file added tests/unit/agents/__init__.py
Empty file.
Loading
Loading