Skip to content

Commit 12c6e67

Browse files
justin-cechmanektylerhutcherson
authored andcommitted
skips mistral vectorizer
1 parent 3348dcd commit 12c6e67

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

tests/integration/test_vectorizers.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -248,12 +248,14 @@ def bad_return_type(text: str) -> str:
248248
CohereTextVectorizer,
249249
CustomTextVectorizer,
250250
HFTextVectorizer,
251-
MistralAITextVectorizer,
251+
#MistralAITextVectorizer,
252252
OpenAITextVectorizer,
253253
VertexAITextVectorizer,
254254
],
255255
)
256-
def test_dtypes(vector_class):
256+
def test_dtypes(vector_class, skip_vectorizer):
257+
if skip_vectorizer:
258+
pytest.skip("Skipping vectorizer instantiation...")
257259
words = "test sentence"
258260

259261
# test dtype defaults to float32

0 commit comments

Comments
 (0)