Skip to content

Commit 03e79b8

Browse files
committed
tests
1 parent 80c1259 commit 03e79b8

File tree

3 files changed

+5
-0
lines changed

3 files changed

+5
-0
lines changed

client/tests/astra-assistants/test_run_retreival_v2.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -154,6 +154,7 @@ def test_run_cohere(patched_openai_client):
154154
)
155155
run_with_assistant(cohere_assistant, patched_openai_client, file2_path, embedding_model2)
156156

157+
@pytest.skip
157158
def test_run_perp(patched_openai_client):
158159
model="perplexity/llama-3.1-70b-instruct"
159160
name = f"{model} Math Tutor"

client/tests/astra-assistants/test_streaming_run_retrieval_v2.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -168,6 +168,7 @@ def test_run_cohere(patched_openai_client):
168168
)
169169
run_with_assistant(cohere_assistant, patched_openai_client)
170170

171+
@pytest.skip
171172
def test_run_perp(patched_openai_client):
172173
model="perplexity/llama-3.1-70b-instruct"
173174
name = f"{model} Math Tutor"
@@ -190,6 +191,7 @@ def test_run_claude(patched_openai_client):
190191
)
191192
run_with_assistant(claude_assistant, patched_openai_client)
192193

194+
@pytest.skip
193195
def test_run_gemini(patched_openai_client):
194196
#model = "gemini/gemini-1.5-pro-latest"
195197
model = "gemini/gemini-1.5-flash"

client/tests/astra-assistants/test_streaming_run_v2.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import time
22
import logging
33

4+
import pytest
45
from openai.lib.streaming import AssistantEventHandler
56
from typing_extensions import override
67

@@ -86,6 +87,7 @@ def test_run_cohere(patched_openai_client):
8687
)
8788
run_with_assistant(cohere_assistant, patched_openai_client)
8889

90+
@pytest.skip
8991
def test_run_perp(patched_openai_client):
9092
perplexity_assistant = patched_openai_client.beta.assistants.create(
9193
name="Perplexity/Mixtral Animal Tutor",

0 commit comments

Comments
 (0)