chore: add fake DoclingService for E2E tests and integrate into runtime fakes

This commit is contained in:
Anish Sarkar 2026-05-12 00:30:16 +05:30
parent b247ff37df
commit c052fc9304
3 changed files with 143 additions and 0 deletions

View file

@ -117,6 +117,7 @@ from tests.e2e.fakes import ( # noqa: E402
clickup_module as _fake_clickup_module,
confluence_indexer as _fake_confluence_indexer,
confluence_oauth as _fake_confluence_oauth,
docling_service as _fake_docling_service,
dropbox_api as _fake_dropbox_api,
embeddings as _fake_embeddings,
jira_module as _fake_jira_module,
@ -197,6 +198,7 @@ def _patch_llm_bindings() -> None:
_patch_llm_bindings()
_fake_embeddings.install(_active_patches)
_fake_docling_service.install(_active_patches)
_fake_confluence_oauth.install(_active_patches)
_fake_confluence_indexer.install(_active_patches)
_fake_native_google.install(_active_patches)