File tree Expand file tree Collapse file tree 2 files changed +1
-5
lines changed
test_elasticsearch/test_server/test_vectorstore Expand file tree Collapse file tree 2 files changed +1
-5
lines changed Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ dev = [
7070 " nox" ,
7171 " orjson" ,
7272 " numpy" ,
73- " simsimd ; python_version<'3.13' " ,
73+ " simsimd" ,
7474 " pyarrow" ,
7575 " pandas" ,
7676 " mapbox-vector-tile" ,
Original file line number Diff line number Diff line change @@ -899,8 +899,6 @@ def test_max_marginal_relevance_search_errors(
899899 self , sync_client : Elasticsearch , index : str
900900 ) -> None :
901901 """Test max marginal relevance search error conditions."""
902- pytest .importorskip ("simsimd" )
903-
904902 texts = ["foo" , "bar" , "baz" ]
905903 vector_field = "vector_field"
906904 embedding_service = ConsistentFakeEmbeddings ()
@@ -942,8 +940,6 @@ def test_max_marginal_relevance_search(
942940 self , sync_client : Elasticsearch , index : str
943941 ) -> None :
944942 """Test max marginal relevance search."""
945- pytest .importorskip ("simsimd" )
946-
947943 texts = ["foo" , "bar" , "baz" ]
948944 vector_field = "vector_field"
949945 text_field = "text_field"
You can’t perform that action at this time.
0 commit comments