diff --git a/.github/workflows/test-python.yml b/.github/workflows/test-python.yml index e4d3980..67afd30 100644 --- a/.github/workflows/test-python.yml +++ b/.github/workflows/test-python.yml @@ -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: diff --git a/tests/test_index.py b/tests/test_index.py index 73e89b8..94c6ec3 100644 --- a/tests/test_index.py +++ b/tests/test_index.py @@ -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"