Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: test that vector integreity check can be toggled on index update with AVS 1.0.0 vec-448 #25

Merged
merged 1 commit into from
Dec 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading