Skip to content

Commit c5529b6

Browse files
committed
fix(ci): increase embedding regression test timeout to 240s (#708)
The beforeAll hook was timing out at 120s on macOS CI runners due to slow model download. Doubled to 240s for headroom.
1 parent 22c8e02 commit c5529b6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/search/embedding-regression.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ describe.skipIf(!hasTransformers)('embedding regression (real model)', () => {
6666

6767
// Build embeddings with the smallest/fastest model
6868
await buildEmbeddings(tmpDir, 'minilm', dbPath);
69-
}, 120_000);
69+
}, 240_000);
7070

7171
afterAll(() => {
7272
if (tmpDir) fs.rmSync(tmpDir, { recursive: true, force: true });

0 commit comments

Comments
 (0)