Skip to content

Commit 0acda9a

Browse files
committed
fix: tests
1 parent d320a96 commit 0acda9a

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

test/unit/conftest.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
from deepset_mcp.api.pipeline.protocols import PipelineResourceProtocol
1616
from deepset_mcp.api.pipeline_template.protocols import PipelineTemplateResourceProtocol
1717
from deepset_mcp.api.protocols import AsyncClientProtocol
18+
from deepset_mcp.api.search_history.protocols import SearchHistoryResourceProtocol
1819
from deepset_mcp.api.secrets.protocols import SecretResourceProtocol
1920
from deepset_mcp.api.transport import StreamingResponse, StreamReaderProtocol, TransportResponse
2021
from deepset_mcp.api.user.protocols import UserResourceProtocol
@@ -283,3 +284,7 @@ def workspaces(self) -> WorkspaceResourceProtocol:
283284
def integrations(self) -> IntegrationResourceProtocol:
284285
"""Overwrite this method when testing IntegrationResource."""
285286
raise NotImplementedError
287+
288+
def search_history(self, workspace: str) -> SearchHistoryResourceProtocol:
289+
"""Overwrite this method when testing SearchHistoryResource."""
290+
raise NotImplementedError

0 commit comments

Comments
 (0)