Skip to content

Commit

Permalink
Fix integration tests (#552)
Browse files Browse the repository at this point in the history
  • Loading branch information
lkuligin authored Oct 11, 2024
1 parent 59380fb commit 9d997c5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions libs/vertexai/tests/integration_tests/test_callbacks.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
@pytest.mark.release
@pytest.mark.parametrize(
"model_name",
[_DEFAULT_MODEL_NAME, "code-bison@001"],
[_DEFAULT_MODEL_NAME],
)
def test_llm_invoke(model_name: str) -> None:
vb = VertexAICallbackHandler()
Expand All @@ -30,7 +30,7 @@ def test_llm_invoke(model_name: str) -> None:
@pytest.mark.release
@pytest.mark.parametrize(
"model_name",
[_DEFAULT_MODEL_NAME, "chat-bison@001", "codechat-bison@001"],
[_DEFAULT_MODEL_NAME],
)
def test_chat_call(model_name: str) -> None:
vb = VertexAICallbackHandler()
Expand All @@ -51,7 +51,7 @@ def test_chat_call(model_name: str) -> None:
@pytest.mark.release
@pytest.mark.parametrize(
"model_name",
[_DEFAULT_MODEL_NAME, "code-bison@001"],
[_DEFAULT_MODEL_NAME],
)
def test_invoke_config(model_name: str) -> None:
vb = VertexAICallbackHandler()
Expand Down

0 comments on commit 9d997c5

Please sign in to comment.