Skip to content

Commit 0296924

Browse files
authored
Merge pull request #2 from NoahStapp/main
Skip update test on local Atlas
2 parents 8d776d8 + 0d7f471 commit 0296924

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/test-python.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,6 @@ jobs:
3434
- uses: extractions/setup-just@e33e0265a09d6d736e2ee1e0eb685ef1de4669ff # v3
3535
- run: just install
3636
- run: just lint
37-
- run: just docs
38-
- run: just doctest
3937
build:
4038
runs-on: ubuntu-latest
4139
permissions:

tests/test_index.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,9 @@ def test_search_index_create_and_drop(collection: Collection) -> None:
7777
assert len(indexes) == 0
7878

7979

80+
@pytest.mark.skip(
81+
"collection.update_vector_search_index requires [https://jira.mongodb.org/browse/DRIVERS-3078]"
82+
)
8083
def test_search_index_update_vector_search_index(collection: Collection) -> None:
8184
index_name = "INDEX_TO_UPDATE"
8285
similarity_orig = "cosine"

0 commit comments

Comments
 (0)