Skip to content

Commit 45d88ac

Browse files
committed
Skip aggregate hybrid tests for 1.24.26
1 parent 67a9cf2 commit 45d88ac

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

src/collections/aggregate/integration.test.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -436,6 +436,10 @@ describe('Testing of collection.aggregate search methods', () => {
436436
});
437437

438438
it('should return an aggregation on a hybrid search', async () => {
439+
if (await client.getWeaviateVersion().then((ver) => ver.isLowerThan(1, 25, 0))) {
440+
console.warn('Skipping test as there is a bug with this in 1.24.26 that will not be fixed');
441+
return;
442+
}
439443
const result = await collection.aggregate.hybrid('test', {
440444
alpha: 0.5,
441445
maxVectorDistance: 0,
@@ -446,6 +450,10 @@ describe('Testing of collection.aggregate search methods', () => {
446450
});
447451

448452
it('should return a grouped aggregation on a hybrid search', async () => {
453+
if (await client.getWeaviateVersion().then((ver) => ver.isLowerThan(1, 25, 0))) {
454+
console.warn('Skipping test as there is a bug with this in 1.24.26 that will not be fixed');
455+
return;
456+
}
449457
const result = await collection.aggregate.groupBy.hybrid('test', {
450458
objectLimit: 1000,
451459
groupBy: 'text',

0 commit comments

Comments
 (0)