File tree 2 files changed +1
-5
lines changed
test_elasticsearch/test_server/test_vectorstore
2 files changed +1
-5
lines changed Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ dev = [
70
70
" nox" ,
71
71
" orjson" ,
72
72
" numpy" ,
73
- " simsimd ; python_version<'3.13' " ,
73
+ " simsimd" ,
74
74
" pyarrow" ,
75
75
" pandas" ,
76
76
" mapbox-vector-tile" ,
Original file line number Diff line number Diff line change @@ -899,8 +899,6 @@ def test_max_marginal_relevance_search_errors(
899
899
self , sync_client : Elasticsearch , index : str
900
900
) -> None :
901
901
"""Test max marginal relevance search error conditions."""
902
- pytest .importorskip ("simsimd" )
903
-
904
902
texts = ["foo" , "bar" , "baz" ]
905
903
vector_field = "vector_field"
906
904
embedding_service = ConsistentFakeEmbeddings ()
@@ -942,8 +940,6 @@ def test_max_marginal_relevance_search(
942
940
self , sync_client : Elasticsearch , index : str
943
941
) -> None :
944
942
"""Test max marginal relevance search."""
945
- pytest .importorskip ("simsimd" )
946
-
947
943
texts = ["foo" , "bar" , "baz" ]
948
944
vector_field = "vector_field"
949
945
text_field = "text_field"
You can’t perform that action at this time.
0 commit comments