Skip to content

Commit

Permalink
tests: Updated group search with parallel
Browse files Browse the repository at this point in the history
  • Loading branch information
hh-space-invader committed Mar 11, 2025
1 parent 3ec2fa7 commit 4baeeac
Show file tree
Hide file tree
Showing 4 changed files with 222 additions and 163 deletions.
6 changes: 3 additions & 3 deletions tests/congruence_tests/test_common.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,9 +109,9 @@ def initialize_fixture_collection(
)


def delete_fixture_collection(client: QdrantBase) -> None:
if client.collection_exists(COLLECTION_NAME):
client.delete_collection(COLLECTION_NAME)
def delete_fixture_collection(client: QdrantBase, collection_name: str = COLLECTION_NAME) -> None:
if client.collection_exists(collection_name):
client.delete_collection(collection_name)


def generate_fixtures(
Expand Down
Loading

0 comments on commit 4baeeac

Please sign in to comment.