From 4c013aefd408d9042a9c63add2aa8a04f7e4b654 Mon Sep 17 00:00:00 2001 From: SignalRT Date: Sun, 17 Mar 2024 23:50:17 +0100 Subject: [PATCH] Disable Llava Embed test on CI --- LLama.Unittest/LLavaWeightsTests.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/LLama.Unittest/LLavaWeightsTests.cs b/LLama.Unittest/LLavaWeightsTests.cs index 0e460bc5..9ca0a724 100644 --- a/LLama.Unittest/LLavaWeightsTests.cs +++ b/LLama.Unittest/LLavaWeightsTests.cs @@ -32,7 +32,7 @@ namespace LLama.Unittest _lLavaWeights.Dispose(); } - [Fact] + [Fact(Skip = "Very very slow in CI")] public void EmbedImageAsFileName() { int n_past = 0; @@ -40,7 +40,7 @@ namespace LLama.Unittest Assert.True( _lLavaWeights.EvalImageEmbed( _context, emb, ref n_past ) ); } - [Fact] + [Fact(Skip = "Very very slow in CI")] public void EmbedImageAsBinary() { int n_past = 0;