Skip to content
Merged
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: 1 addition & 4 deletions pkg/runner/retriever/retriever_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,9 @@ func TestGetMCPServer_WithGroup(t *testing.T) {
}
}

if testGroupName == "" {
if testGroupName == "" || group == nil {
t.Skip("No groups found in registry, skipping group tests")
}
if group == nil {
t.Skip("Test group is nil, skipping")
}

// Find a server in the group to test with
var testServerName string
Expand Down
Loading