Skip to content

Commit

Permalink
Removing some unnecessary code
Browse files Browse the repository at this point in the history
Signed-off-by: Francisco Javier Arceo <[email protected]>
  • Loading branch information
franciscojavierarceo committed Dec 20, 2024
1 parent f324251 commit da280ce
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,6 @@ def retrieve_online_documents(
anns_field=ann_search_field,
param=search_params,
limit=top_k,
# expr=expr,
output_fields=output_fields,
consistency_level="Strong",
)
Expand Down
11 changes: 2 additions & 9 deletions sdk/python/tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -203,17 +203,10 @@ def environment(request, worker_id):

@pytest.fixture
def vectordb_environment(request, worker_id):
db_config = IntegrationTestRepoConfig(
provider="local",
# online_store="milvus",
# online_store_creator=MilvusOnlineStoreCreator,
# offline_store_creator=FileDataSourceCreator,
)
print(request)
e = construct_test_environment(
db_config,
fixture_request=request,
request.param,
worker_id=worker_id,
fixture_request=request,
entity_key_serialization_version=3,
)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,4 @@ def create_online_store(self) -> Dict[str, Any]:
}

def teardown(self):
# assert 1 == 4
self.container.stop()

0 comments on commit da280ce

Please sign in to comment.