You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
test: raise TS SDK filter-scope test timeouts and parallelize ingests
The "filterId in chat actually scopes retrieval to data_sources" integration
test was timing out at 60s and failing CI on every run. The chat itself works
(backend logs show the response generated in ~7.6s); the 60s budget was consumed
by two sequential Docling ingests (~25s each in CI) plus the filter create before
the chat even started, so the test crossed the deadline.
Bump the three ingest-heavy filter-scope tests (chat, search, delete-by-filter)
to a 180s per-test timeout and ingest the two docs concurrently via Promise.all
to shorten the critical path. Raise the global vitest testTimeout 60s -> 120s so
lighter tests have headroom too. The Python equivalent already passes because
pytest imposes no per-test cap; no backend/SDK behavior changes.
0 commit comments