Skip to content

Commit 6d36010

Browse files
committed
ci: add 1.32 to test matrix and require it in the RQ test
1 parent 41794ce commit 6d36010

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/main.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ env:
1515
WEAVIATE_129: 1.29.8
1616
WEAVIATE_130: 1.30.7
1717
WEAVIATE_131: 1.31.0
18+
WEAVIATE_132: 1.32.0-rc.1
1819

1920
concurrency:
2021
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}

src/collections/config/integration.test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ describe('Testing of the collection.config namespace', () => {
206206
expect(config.vectorizers.default.vectorizer.name).toEqual('none');
207207
});
208208

209-
it('should be able to get the config of a collection with hnsw-rq', async () => {
209+
requireAtLeast(1, 32, 0).it('should be able to get the config of a collection with hnsw-rq', async () => {
210210
const collectionName = 'TestCollectionConfigGetHNSWPlusRQ';
211211
const collection = await client.collections.create({
212212
name: collectionName,
@@ -554,8 +554,8 @@ describe('Testing of the collection.config namespace', () => {
554554
.update({
555555
propertyDescriptions: supportsUpdatingPropertyDescriptions
556556
? {
557-
testProp: 'This is a test property',
558-
}
557+
testProp: 'This is a test property',
558+
}
559559
: undefined,
560560
vectorizers: weaviate.reconfigure.vectorizer.update({
561561
vectorIndexConfig: weaviate.reconfigure.vectorIndex.hnsw({

0 commit comments

Comments
 (0)