We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8d776d8 + 0d7f471 commit 0296924Copy full SHA for 0296924
.github/workflows/test-python.yml
@@ -34,8 +34,6 @@ jobs:
34
- uses: extractions/setup-just@e33e0265a09d6d736e2ee1e0eb685ef1de4669ff # v3
35
- run: just install
36
- run: just lint
37
- - run: just docs
38
- - run: just doctest
39
build:
40
runs-on: ubuntu-latest
41
permissions:
tests/test_index.py
@@ -77,6 +77,9 @@ def test_search_index_create_and_drop(collection: Collection) -> None:
77
assert len(indexes) == 0
78
79
80
+@pytest.mark.skip(
81
+ "collection.update_vector_search_index requires [https://jira.mongodb.org/browse/DRIVERS-3078]"
82
+)
83
def test_search_index_update_vector_search_index(collection: Collection) -> None:
84
index_name = "INDEX_TO_UPDATE"
85
similarity_orig = "cosine"
0 commit comments