Skip to content

Commit

Permalink
ci: test that vector integreity check can be toggled on index update …
Browse files Browse the repository at this point in the history
…with AVS 1.0.0 (#25) vec-448
  • Loading branch information
dwelch-spike authored Dec 6, 2024
1 parent 79fd24a commit 43b7eac
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 11 deletions.
2 changes: 1 addition & 1 deletion RELEASE
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.0.0
3.1.0
19 changes: 9 additions & 10 deletions e2e_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -574,16 +574,15 @@ func (suite *CmdTestSuite) TestSuccessfulUpdateIndexCmd() {
WithHnswMergeReIndexParallelism(11).
Build(),
},
// TODO enable this if the server enables vector integrity check changes on update
// {
// name: "test with enable vector integrity check",
// indexName: "successful-update",
// indexNamespace: "test",
// cmd: "index update -y -n test -i successful-update --hnsw-vector-integrity-check false",
// expectedIndex: newBuilder().
// WithEnableVectorIntegrityCheck(false).
// Build(),
// },
{
name: "test with enable vector integrity check",
indexName: "successful-update",
indexNamespace: "test",
cmd: "index update -y -n test -i successful-update --hnsw-vector-integrity-check false",
expectedIndex: newBuilder().
WithHnswVectorIntegrityCheck(false).
Build(),
},
}

for _, tc := range testCases {
Expand Down

0 comments on commit 43b7eac

Please sign in to comment.