From 100ebdfa2c36bc732520383b1f207274bf6e4d69 Mon Sep 17 00:00:00 2001 From: Ettore Di Giacinto Date: Thu, 4 Dec 2025 14:15:15 +0100 Subject: [PATCH] chore(ci): do not overload the apple tests Skip tests that are already run on other jobs and not really adding anything here. We have already functional tests that cover apple. Signed-off-by: Ettore Di Giacinto --- core/http/app_test.go | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/core/http/app_test.go b/core/http/app_test.go index a733fcdd6..5556cb23b 100644 --- a/core/http/app_test.go +++ b/core/http/app_test.go @@ -970,6 +970,9 @@ parameters: }) It("returns logprobs in chat completions when requested", func() { + if runtime.GOOS != "linux" { + Skip("test only on linux") + } topLogprobsVal := 3 response, err := client.CreateChatCompletion(context.TODO(), openai.ChatCompletionRequest{ Model: "testmodel.ggml", @@ -1027,6 +1030,9 @@ parameters: }) It("applies logit_bias to chat completions when requested", func() { + if runtime.GOOS != "linux" { + Skip("test only on linux") + } // logit_bias is a map of token IDs (as strings) to bias values (-100 to 100) // According to OpenAI API: modifies the likelihood of specified tokens appearing in the completion logitBias := map[string]int{