Skip to content

Commit

Permalink
chore(vertexai): skip tests that check blocked inputs for model (#10152)
Browse files Browse the repository at this point in the history
  • Loading branch information
eliben committed May 13, 2024
1 parent 6c76a67 commit b452014
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion vertexai/genai/client_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,9 @@ func TestLive(t *testing.T) {
})

t.Run("blocked", func(t *testing.T) {
// Only happens with streaming at the moment.
// Blocking semantics have changed; skip these tests for now.
t.Skip()

iter := model.GenerateContentStream(ctx, Text("How do I make a weapon?"))
resps, err := all(iter)
if err == nil {
Expand Down

0 comments on commit b452014

Please sign in to comment.