From f8c00fbaf17f099a9aaedd58171ab1a758c025e0 Mon Sep 17 00:00:00 2001 From: Ettore Di Giacinto Date: Sun, 29 Oct 2023 22:09:25 +0100 Subject: [PATCH] ci: enlarge download timeout window Signed-off-by: Ettore Di Giacinto --- api/api_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/api_test.go b/api/api_test.go index 4b91903b17b..6623e54277e 100644 --- a/api/api_test.go +++ b/api/api_test.go @@ -457,7 +457,7 @@ var _ = Describe("API test", func() { Eventually(func() bool { response := getModelStatus("http://127.0.0.1:9090/models/jobs/" + uuid) return response["processed"].(bool) - }, "360s", "10s").Should(Equal(true)) + }, "960s", "10s").Should(Equal(true)) resp, err := client.CreateChatCompletion(context.TODO(), openai.ChatCompletionRequest{Model: "gpt4all-j", Messages: []openai.ChatCompletionMessage{openai.ChatCompletionMessage{Role: "user", Content: "How are you?"}}}) Expect(err).ToNot(HaveOccurred())