Skip to content
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: 0 additions & 2 deletions .github/workflows/test-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,6 @@ jobs:
- uses: extractions/setup-just@e33e0265a09d6d736e2ee1e0eb685ef1de4669ff # v3
- run: just install
- run: just lint
- run: just docs
- run: just doctest
build:
runs-on: ubuntu-latest
permissions:
Expand Down
3 changes: 3 additions & 0 deletions tests/test_index.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,9 @@ def test_search_index_create_and_drop(collection: Collection) -> None:
assert len(indexes) == 0


@pytest.mark.skip(
"collection.update_vector_search_index requires [https://jira.mongodb.org/browse/DRIVERS-3078]"
)
def test_search_index_update_vector_search_index(collection: Collection) -> None:
index_name = "INDEX_TO_UPDATE"
similarity_orig = "cosine"
Expand Down