From a2d3a847dd7a42e188996abfc40e9f9647406b6a Mon Sep 17 00:00:00 2001 From: Martin Evans Date: Mon, 25 Mar 2024 22:10:41 +0000 Subject: [PATCH] Disabled LLava tests, they're too slow and are crashing CI (#625) --- LLama.Unittest/LLavaWeightsTests.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/LLama.Unittest/LLavaWeightsTests.cs b/LLama.Unittest/LLavaWeightsTests.cs index beeb2fc4..e1fe1065 100644 --- a/LLama.Unittest/LLavaWeightsTests.cs +++ b/LLama.Unittest/LLavaWeightsTests.cs @@ -34,14 +34,14 @@ namespace LLama.Unittest - [Fact] + [Fact(Skip = "Very slow in CI")] public void EmbedImageAsFileName() { int n_past = 0; Assert.True( _lLavaWeights.EmbedImage( _context, Constants.LLavaImage, ref n_past ) ); - } - - [Fact] + } + + [Fact(Skip = "Very slow in CI")] public void EmbedImageAsBinary() { int n_past = 0;