From fa00aa0085c6b859eb81d17f9356819a845a7e66 Mon Sep 17 00:00:00 2001 From: Ettore Di Giacinto Date: Fri, 21 Nov 2025 15:01:04 +0100 Subject: [PATCH] chore(ci): add OS check to skip test if not on Linux Skip test on non-Linux operating systems. Signed-off-by: Ettore Di Giacinto --- core/http/app_test.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/core/http/app_test.go b/core/http/app_test.go index 0e84530a7..362a6bc69 100644 --- a/core/http/app_test.go +++ b/core/http/app_test.go @@ -1199,6 +1199,9 @@ parameters: Context("Config file", func() { BeforeEach(func() { + if runtime.GOOS != "linux" { + Skip("run this test only on linux") + } modelPath := os.Getenv("MODELS_PATH") backendPath := os.Getenv("BACKENDS_PATH") c, cancel = context.WithCancel(context.Background())