Skip to content

Commit

Permalink
Merge pull request #1126 from weaviate/update-weaviate-vers-in-ci
Browse files Browse the repository at this point in the history
Update weaviate vers in ci
  • Loading branch information
tsmith023 authored Jun 26, 2024
2 parents 2dfeb61 + 3bc054c commit cbedf2a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 10 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,9 @@ on:
pull_request:

env:
WEAVIATE_123: 1.23.14
WEAVIATE_124: 1.24.10
WEAVIATE_125: preview--c57fecf

WEAVIATE_123: 1.23.15
WEAVIATE_124: 1.24.19
WEAVIATE_125: 1.25.5

jobs:
lint-and-format:
Expand Down
4 changes: 0 additions & 4 deletions integration/test_collection.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,8 +141,6 @@ def test_delete_by_id(collection_factory: CollectionFactory) -> None:
assert collection.query.fetch_object_by_id(uuid) is not None
assert collection.data.delete_by_id(uuid)
assert collection.query.fetch_object_by_id(uuid) is None
# does not exist anymore
assert not collection.data.delete_by_id(uuid)


def test_delete_by_id_consistency_level(collection_factory: CollectionFactory) -> None:
Expand All @@ -154,8 +152,6 @@ def test_delete_by_id_consistency_level(collection_factory: CollectionFactory) -
assert collection.query.fetch_object_by_id(uuid) is not None
assert collection.data.delete_by_id(uuid)
assert collection.query.fetch_object_by_id(uuid) is None
# does not exist anymore
assert not collection.data.delete_by_id(uuid)


@pytest.mark.parametrize(
Expand Down
2 changes: 0 additions & 2 deletions integration/test_tenants.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,6 @@ def test_delete_by_id_tenant(collection_factory: CollectionFactory) -> None:
assert tenant1.query.fetch_object_by_id(uuid) is not None
assert tenant1.data.delete_by_id(uuid)
assert tenant1.query.fetch_object_by_id(uuid) is None
# does not exist anymore
assert not tenant1.data.delete_by_id(uuid)


def test_insert_many_with_tenant(collection_factory: CollectionFactory) -> None:
Expand Down

0 comments on commit cbedf2a

Please sign in to comment.